mirror of
https://github.com/rjNemo/functional-programming-jargon
synced 2026-06-12 13:36:40 +00:00
Fix spelling of "two two"
This commit is contained in:
parent
c745ecb7a0
commit
c79038ffbb
1 changed files with 1 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ add2(10) // 12
|
||||||
|
|
||||||
## Function Composition
|
## 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
|
```js
|
||||||
const compose = (f, g) => a => f(g(a)) // Definition
|
const compose = (f, g) => a => f(g(a)) // Definition
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue