Merge pull request #44 from marcusnielsen/patch-1

Fix spelling of "two two"
This commit is contained in:
hemanth.hm 2016-06-10 10:37:04 +05:30 committed by GitHub
commit 6d8db7fb0a

View file

@ -125,7 +125,7 @@ add2(10) // 12
## Function Composition
> The act of putting two two functions together to form a third function where the the output of one function is the input of the other.
> The act of putting two functions together to form a third function where the the output of one function is the input of the other.
```js
const compose = (f, g) => a => f(g(a)) // Definition