Skip to content

Commit 841ed85

Browse files
authored
Fixes #145
1 parent 1ec74df commit 841ed85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ add2(10) // 12
145145
## Auto Currying
146146
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.
147147

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

150150
```js
151151
const add = (x, y) => x + y

0 commit comments

Comments
 (0)