Skip to content

Commit 65febd6

Browse files
committed
Remove escape rule
We no longer represent characters via escape sequences. These can be confused with the literal two bytes of backslash followed by a character. See the "common productions" list for how these are now referred to.
1 parent 13996e6 commit 65febd6

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/notation.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ The following notations are used by the *Lexer* and *Syntax* grammar snippets:
99
| CAPITAL | KW_IF, INTEGER_LITERAL | A token produced by the lexer |
1010
| _ItalicCamelCase_ | _LetStatement_, _Item_ | A syntactical production |
1111
| `string` | `x`, `while`, `*` | The exact character(s) |
12-
| \\x | \\n, \\r, \\t, \\0 | The character represented by this escape |
1312
| x<sup>?</sup> | `pub`<sup>?</sup> | An optional item |
1413
| x<sup>\*</sup> | _OuterAttribute_<sup>\*</sup> | 0 or more of x |
1514
| x<sup>+</sup> | _MacroMatch_<sup>+</sup> | 1 or more of x |

0 commit comments

Comments
 (0)