add parenthesis

This commit is contained in:
Scott Simpson 2016-09-16 12:09:49 -07:00 committed by GitHub
parent fe7cc3efe6
commit e080a05b3e

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`