From 577cef1b0fe4e8acc3493cfdb3bc00106afa5943 Mon Sep 17 00:00:00 2001 From: Alex Hirsch Date: Tue, 13 Apr 2021 15:28:21 +0200 Subject: [PATCH] Escape pipe in Markdown table --- specification.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/specification.md b/specification.md index eaa01df..c2353b7 100644 --- a/specification.md +++ b/specification.md @@ -154,12 +154,12 @@ Arrays are at most `LONG_MAX` elements long. The following table enumerates which types an operator supports. In the case of a binary operator, both sides must be of the same type. -| Operator | Supported Types | -| ----------------- | ---------------------- | -| `-` `+` `*` `/` | `int`, `float` | -| `<` `<=` `>` `>=` | `int`, `float` | -| `==` `!=` | `bool`, `int`, `float` | -| `!` `&&` `||` | `bool` | +| Operator | Supported Types | +| ---------------------------------- | ---------------------- | +| `-` `+` `*` `/` | `int`, `float` | +| `<` `<=` `>` `>=` | `int`, `float` | +| `==` `!=` | `bool`, `int`, `float` | +| `!` `&&` || | `bool` | ### Special Semantics