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