From e536145dd1cc59779ce326170a4c0bb3ce282906 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20A=20L=C3=B3pez?= Date: Sun, 24 Jul 2016 19:25:55 -0500 Subject: [PATCH] Typo in function composition section --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 2a87f58..1f1b9f4 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