From c79038ffbbe9534ae7d717812326845f9661a108 Mon Sep 17 00:00:00 2001 From: Marcus Nielsen Date: Thu, 9 Jun 2016 14:23:10 +0200 Subject: [PATCH] Fix spelling of "two two" --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 034d745..6ad203a 100644 --- a/readme.md +++ b/readme.md @@ -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