aboutsummaryrefslogtreecommitdiff
path: root/doc/manual/src/language
diff options
context:
space:
mode:
authorMarcel Transier <34482842+marceltransier@users.noreply.github.com>2023-01-18 22:34:49 +0100
committerGitHub <noreply@github.com>2023-01-18 22:34:49 +0100
commit9141b74eb77d58844a056313eff5cbd02d9e9dd4 (patch)
treee14845bc5d7174d61213f0226a6a50f40bad7c49 /doc/manual/src/language
parent2513eba46a20578f54fd3ac3cb0d25aeb0d0b310 (diff)
Fix markdown error in operators.md
Escape logical or pipe in markdown table according to https://github.github.com/gfm/#example-200
Diffstat (limited to 'doc/manual/src/language')
-rw-r--r--doc/manual/src/language/operators.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/src/language/operators.md b/doc/manual/src/language/operators.md
index 797f13bd3..fb824feca 100644
--- a/doc/manual/src/language/operators.md
+++ b/doc/manual/src/language/operators.md
@@ -24,7 +24,7 @@
| [Equality] | *expr* `==` *expr* | none | 11 |
| Inequality | *expr* `!=` *expr* | none | 11 |
| Logical conjunction (`AND`) | *bool* `&&` *bool* | left | 12 |
-| Logical disjunction (`OR`) | *bool* `||` *bool* | left | 13 |
+| Logical disjunction (`OR`) | *bool* `\|\|` *bool* | left | 13 |
| [Logical implication] | *bool* `->` *bool* | none | 14 |
[string]: ./values.md#type-string