Skip to content

Commit

Permalink
Fix broken table in the documentation
Browse files Browse the repository at this point in the history
fixes #10351
  • Loading branch information
gunnarbeutner committed Oct 13, 2015
1 parent cd36ca2 commit 591c67c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/19-language-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ in | 7 | "foo" in [ "foo", "bar" ] (true) | Element
^ | 10 | 17 ^ 12 (29) | Bitwise XOR
| | 11 | 2 | 3 (3) | Binary OR
&& | 13 | true && false (false), 3 && 7 (7), 0 && 7 (0) | Logical AND
|| | 14 | true || false (true), 0 || 7 (7)| Logical OR
|| | 14 | true || false (true), 0 || 7 (7)| Logical OR
= | 12 | a = 3 | Assignment
=> | 15 | x => x * x (function with arg x) | Lambda, for loop

Expand Down

0 comments on commit 591c67c

Please sign in to comment.