correct plural of parenthesis (#68)

This commit is contained in:
Florian 2016-07-25 17:43:25 +02:00 committed by hemanth.hm
parent 4e69ee2adf
commit 6641c2c27c

View file

@ -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