Fix broken table in the documentation

fixes #10351
This commit is contained in:
Gunnar Beutner 2015-10-13 11:08:11 +02:00
parent cd36ca2f3f
commit 591c67cabb
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ in | 7 | "foo" in [ "foo", "bar" ] (true) | Element
^ | 10 | 17 ^ 12 (29) | Bitwise XOR ^ | 10 | 17 ^ 12 (29) | Bitwise XOR
| | 11 | 2 | 3 (3) | Binary OR | | 11 | 2 | 3 (3) | Binary OR
&& | 13 | true && false (false), 3 && 7 (7), 0 && 7 (0) | Logical AND && | 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 = | 12 | a = 3 | Assignment
=> | 15 | x => x * x (function with arg x) | Lambda, for loop => | 15 | x => x * x (function with arg x) | Lambda, for loop