Fix spelling of "two two"

This commit is contained in:
Marcus Nielsen 2016-06-09 14:23:10 +02:00
parent c745ecb7a0
commit c79038ffbb

View file

@ -122,7 +122,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