Merge pull request #1320 from jethroscott/patch-1

[rewrite] add parenthesis
This commit is contained in:
Leo Horie 2016-09-19 10:36:41 -04:00 committed by GitHub
commit d461c7a2e0

View file

@ -43,5 +43,5 @@ Functions are denoted with an arrow (`->`). The left side of the arrow indicates
For example, `parseFloat` has the signature `String -> Number`, i.e. it takes a string as input and returns a number as output.
Functions with multiple arguments are denoted with parenthesis: `String, Array -> Number`
Functions with multiple arguments are denoted with parenthesis: `(String, Array) -> Number`