From 1f293c280b1013a4be318c93976acd302f133682 Mon Sep 17 00:00:00 2001 From: Daniel Smith Date: Mon, 11 Jan 2021 22:07:28 +0200 Subject: [PATCH] Add forwardlash to escapes table (#73) I noticed this was a valid escape char in the rust implementation. Not sure if this was intended. --- SPEC.md | 1 + 1 file changed, 1 insertion(+) diff --git a/SPEC.md b/SPEC.md index 01b9692..3c05f0b 100644 --- a/SPEC.md +++ b/SPEC.md @@ -186,6 +186,7 @@ interpreted as described in the following table: | Carriage Return | `\r` | `U+000D` | | Character Tabulation (Tab) | `\t` | `U+0009` | | Reverse Solidus (Backslash) | `\\` | `U+005C` | +| Solidus (Forwardslash) | `\/` | `U+002F` | | Quotation Mark (Double Quote) | `\"` | `U+0022` | | Backspace | `\b` | `U+0008` | | Form Feed | `\f` | `U+000C` |