summaryrefslogtreecommitdiff
path: root/15-syntax-summary.md
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2014-03-26 01:11:09 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2014-03-26 01:11:09 -0700
commitf16ab43734906e752eba81c3e73acb44dd792bbc (patch)
treed6d15198fa95fdab655c6a255b6c98db692b6285 /15-syntax-summary.md
parent56295292f28c78ebb4421e965ec302264fe51976 (diff)
downloadscala-f16ab43734906e752eba81c3e73acb44dd792bbc.tar.gz
scala-f16ab43734906e752eba81c3e73acb44dd792bbc.tar.bz2
scala-f16ab43734906e752eba81c3e73acb44dd792bbc.zip
use simple quotes, fix indent, escape dollar
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’