From e85202403a22ba8f1664bcde9cff5f0a27ec8346 Mon Sep 17 00:00:00 2001 From: Ophir LOJKINE Date: Sun, 29 May 2016 12:54:46 +0400 Subject: [PATCH] Point-Free Style: fix js error according to the way it's used, add should by curried --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 7170729..d29ca38 100644 --- a/readme.md +++ b/readme.md @@ -141,7 +141,7 @@ executions with the the same input parameters. ```js // Given let map = fn => list => list.map(fn); -let add = (a, b) => a + b; +let add = a => b => a + b; // Then