diff --git a/readme.md b/readme.md index 0748298..5ad06da 100644 --- a/readme.md +++ b/readme.md @@ -120,7 +120,7 @@ add2(10) // 12 ## Function Composition -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. +The act of putting two functions together to form a third function where the output of one function is the input of the other. ```js const compose = (f, g) => (a) => f(g(a)) // Definition