diff options
author | Marcel Transier <34482842+marceltransier@users.noreply.github.com> | 2023-01-18 22:34:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-18 22:34:49 +0100 |
commit | 9141b74eb77d58844a056313eff5cbd02d9e9dd4 (patch) | |
tree | e14845bc5d7174d61213f0226a6a50f40bad7c49 | |
parent | 2513eba46a20578f54fd3ac3cb0d25aeb0d0b310 (diff) |
Fix markdown error in operators.md
Escape logical or pipe in markdown table according to https://github.github.com/gfm/#example-200
-rw-r--r-- | doc/manual/src/language/operators.md | 2 |
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 |