Skip to content

Commit 4d139e9

Browse files
authored
Update article.md
Minor wording change.
1 parent 680d49e commit 4d139e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/06-advanced-functions/10-bind/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ alert( triple(5) ); // = mul(3, 5) = 15
258258
259259
Why do we usually make a partial function?
260260
261-
The benefit is that we can create an independent function with a readable name (`double`, `triple`). We can use it and not provide first argument of every time as it's fixed with `bind`.
261+
The benefit is that we can create an independent function with a readable name (`double`, `triple`). We can use it and not provide the first argument every time as it's fixed with `bind`.
262262
263263
In other cases, partial application is useful when we have a very generic function and want a less universal variant of it for convenience.
264264

0 commit comments

Comments
 (0)