From 1fa5b1127d22df7da4c5adde1facec32bf4139f4 Mon Sep 17 00:00:00 2001 From: Eric Elliott Date: Sat, 13 Jun 2015 06:06:52 -0600 Subject: [PATCH] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index dedf6e3..f6b3d87 100644 --- a/readme.md +++ b/readme.md @@ -47,7 +47,7 @@ partial(2); //=> 42 --- ## Currying -> The process of converting a function with multiple arity into the same function with less arity. +> The process of converting a function with multiple arity into the same function with an arity of one. Not to be confused with partial application, which can produce a function with an arity greater than one. ```js let sum = (a,b) => a+b;