From 6641c2c27c2fa031882a4959bc4d6982fd9cf50f Mon Sep 17 00:00:00 2001 From: Florian Date: Mon, 25 Jul 2016 17:43:25 +0200 Subject: [PATCH] correct plural of parenthesis (#68) --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 5ad06da..7af225e 100644 --- a/readme.md +++ b/readme.md @@ -529,7 +529,7 @@ let add = (x) => (y) => x + y let increment = (x) => x + 1 ``` -If a function accepts another function as an argument it is wrapped in parenthesis. +If a function accepts another function as an argument it is wrapped in parentheses. ```js // call :: (a -> b) -> a -> b