Grammar: Fix rule headings in section "Lexical structure" (KT-22676)

This commit is contained in:
Alexey Belkov
2018-02-03 21:53:21 +03:00
committed by Sergey Igushkin
parent e8f8488d54
commit c0866e7ba2
+4 -4
View File
@@ -36,16 +36,16 @@ NoEscapeString
RegularStringPart
: <any character other than backslash, quote, $ or newline>
ShortTemplateEntryStart:
ShortTemplateEntryStart
: "$"
EscapeSequence:
EscapeSequence
: UnicodeEscapeSequence | RegularEscapeSequence
UnicodeEscapeSequence:
UnicodeEscapeSequence
: "\u" HexDigit{4}
RegularEscapeSequence:
RegularEscapeSequence
: "\" <any character other than newline>
/**