]> granicus.if.org Git - icinga2/commitdiff
Fix broken table in the documentation
authorGunnar Beutner <gunnar@beutner.name>
Tue, 13 Oct 2015 09:08:11 +0000 (11:08 +0200)
committerGunnar Beutner <gunnar@beutner.name>
Tue, 13 Oct 2015 09:09:24 +0000 (11:09 +0200)
fixes #10351

doc/20-language-reference.md

index 69fcab77d6be68d2cc15741408ed62e64b4a2cb0..ce9e2c3bde1477751c1e469ae2492a724574558f 100644 (file)
@@ -185,7 +185,7 @@ in       | 7          | "foo" in [ "foo", "bar" ] (true)              | Element
 ^        | 10          | 17 ^ 12 (29)                                  | Bitwise XOR
 &#124;   | 11          | 2 &#124; 3 (3)                                | Binary OR
 &&       | 13         | true && false (false), 3 && 7 (7), 0 && 7 (0) | Logical AND
-&#124;&#124; | 14     | true &#124;&#124; false (true), 0 || 7 (7)| Logical OR
+&#124;&#124; | 14     | true &#124;&#124; false (true), 0 &#124;&#124; 7 (7)| Logical OR
 =        | 12         | a = 3                                         | Assignment
 =>       | 15         | x => x * x (function with arg x)              | Lambda, for loop