Update readme.md

This commit is contained in:
Eric Elliott 2015-06-13 06:06:52 -06:00
parent c66424cc84
commit 1fa5b1127d

View file

@ -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;