From 9ac6df6cba7004500d26af7bde414db3e2fa88a5 Mon Sep 17 00:00:00 2001 From: Rootul Patel Date: Tue, 31 May 2016 22:55:19 -0400 Subject: [PATCH] Fix typo: combines to combine --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index d690146..de7dee9 100644 --- a/readme.md +++ b/readme.md @@ -78,7 +78,7 @@ curriedSum(40)(2) // 42. > A function which combines two values of a given type (usually also some kind of functions) into a third value of the same type. The most straightforward type of composition is called "normal function composition". -It allows you to combines functions that accept and return a single value. +It allows you to combine functions that accept and return a single value. ```js const compose = (f, g) => a => f(g(a)) // Definition