We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 91642be + c79038f commit 6d8db7fCopy full SHA for 6d8db7f
readme.md
@@ -125,7 +125,7 @@ add2(10) // 12
125
126
## Function Composition
127
128
-> 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.
129
130
```js
131
const compose = (f, g) => a => f(g(a)) // Definition
0 commit comments