Skip to content

Commit

Permalink
Merge pull request #82 from wootencl/language-doc-fix
Browse files Browse the repository at this point in the history
Markdown Fix
  • Loading branch information
FlorianRappl authored May 12, 2017
2 parents 77ab8b5 + 7ed3bb8 commit 26d0fb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/language.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ Calling `f(1, 2, 3)` will return three. Similarly, `f(true, [1, 2, 3])` will ret
f = () => args(0) + args(1);
```

For calling `f(2, 3`)` we will therefore receive the result `5`, however, if we do provide less than two arguments we only get `null`. This is different to the behavior we usually see with named arguments, e.g.,
For calling `f(2, 3)` we will therefore receive the result `5`, however, if we do provide less than two arguments we only get `null`. This is different to the behavior we usually see with named arguments, e.g.,

```C
f = (x, y) => x + y;
Expand Down

0 comments on commit 26d0fb8

Please sign in to comment.