Fix markdown error in operators.md

Escape logical or pipe in markdown table according to https://github.github.com/gfm/#example-200
This commit is contained in:
Marcel Transier 2023-01-18 22:34:49 +01:00 committed by GitHub
parent 2513eba46a
commit 9141b74eb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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