Add forwardlash to escapes table (#73)

I noticed this was a valid escape char in the rust implementation. Not sure if this was intended.
This commit is contained in:
Daniel Smith 2021-01-11 22:07:28 +02:00 committed by GitHub
parent e8dbd597d7
commit 1f293c280b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

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