Skip to content

Commit

Permalink
Fixes hemanth#145
Browse files Browse the repository at this point in the history
  • Loading branch information
hemanth authored Mar 26, 2017
1 parent 1ec74df commit 841ed85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ add2(10) // 12
## Auto Currying
Transforming a function that takes multiple arguments into one that if given less than its correct number of arguments returns a function that takes the rest. When the function gets the correct number of arguments it is then evaluated.

Underscore, lodash, and ramda have a `curry` function that works this way.
lodash & ramda have a `curry` function that works this way.

```js
const add = (x, y) => x + y
Expand Down

0 comments on commit 841ed85

Please sign in to comment.