From e080a05b3ec7a5e794358070154bbf9d26a71af0 Mon Sep 17 00:00:00 2001 From: Scott Simpson Date: Fri, 16 Sep 2016 12:09:49 -0700 Subject: [PATCH] add parenthesis --- docs/signatures.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/signatures.md b/docs/signatures.md index b7313f3c..f565e83f 100644 --- a/docs/signatures.md +++ b/docs/signatures.md @@ -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`