From 841ed85f81fb72e81e6ea11b0d13bad923667cdf Mon Sep 17 00:00:00 2001 From: "hemanth.hm" Date: Sun, 26 Mar 2017 12:58:48 +0530 Subject: [PATCH] Fixes #145 --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index db9199f..684831d 100644 --- a/readme.md +++ b/readme.md @@ -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