summaryrefslogtreecommitdiff
path: root/15-syntax-summary.md
diff options
context:
space:
mode:
Diffstat (limited to '15-syntax-summary.md')
-rw-r--r--15-syntax-summary.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/15-syntax-summary.md b/15-syntax-summary.md
index 2dd9470b23..2aa4e94778 100644
--- a/15-syntax-summary.md
+++ b/15-syntax-summary.md
@@ -18,7 +18,7 @@ The lexical syntax of Scala is given by the following grammar in EBNF form:
```
whiteSpace ::= ‘\u0020’ | ‘\u0009’ | ‘\u000D’ | ‘\u000A’
-upper ::= ‘A’ | … | ‘Z’ | ‘$’ | ‘_’ // and Unicode category Lu
+upper ::= ‘A’ | … | ‘Z’ | ‘\$’ | ‘_’ // and Unicode category Lu
lower ::= ‘a’ | … | ‘z’ // and Unicode category Ll
letter ::= upper | lower // and Unicode categories Lo, Lt, Nl
digit ::= ‘0’ | … | ‘9’