Skip to content

Commit 6db57d9

Browse files
authored
Update article.md
1 parent 9b3b10f commit 6db57d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/11-async/06-promisify/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ As we can see, the new function is a wrapper around the original `loadScript` fu
5050

5151
Now `loadScriptPromise` fits well in promise-based code. If we like promises more than callbacks (and soon we'll see more reasons for that), then we will use it instead.
5252

53-
In practice we may need to promisify more than one function, so it makes sense to use a helper.
53+
In practice we may need to promisify more than one function, so it makes sense to use a helper.
5454

5555
We'll call it `promisify(f)`: it accepts a to-promisify function `f` and returns a wrapper function.
5656

0 commit comments

Comments
 (0)