Escape pipe in Markdown table

This commit is contained in:
Alex Hirsch 2021-04-13 15:28:21 +02:00
parent f2e9c9afe1
commit 577cef1b0f

View File

@ -154,12 +154,12 @@ Arrays are at most `LONG_MAX` elements long.
The following table enumerates which types an operator supports. The following table enumerates which types an operator supports.
In the case of a binary operator, both sides must be of the same type. In the case of a binary operator, both sides must be of the same type.
| Operator | Supported Types | | Operator | Supported Types |
| ----------------- | ---------------------- | | ---------------------------------- | ---------------------- |
| `-` `+` `*` `/` | `int`, `float` | | `-` `+` `*` `/` | `int`, `float` |
| `<` `<=` `>` `>=` | `int`, `float` | | `<` `<=` `>` `>=` | `int`, `float` |
| `==` `!=` | `bool`, `int`, `float` | | `==` `!=` | `bool`, `int`, `float` |
| `!` `&&` `||` | `bool` | | `!` `&&` <code>&#124;&#124;</code> | `bool` |
### Special Semantics ### Special Semantics