summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Barclay <dbarclay@savi.com>2016-09-17 12:58:05 -0400
committerSeth Tisue <seth@tisue.net>2016-09-26 10:14:16 -0700
commit4289842dd5be9d6440112fe285353ce5355a47a0 (patch)
tree1c20200dd65344ff9b86826d4379d4f0c21520fe
parent63f5eb5eb751fa5bfb69d0e783aa360abac82a1b (diff)
downloadscala-4289842dd5be9d6440112fe285353ce5355a47a0.tar.gz
scala-4289842dd5be9d6440112fe285353ce5355a47a0.tar.bz2
scala-4289842dd5be9d6440112fe285353ce5355a47a0.zip
SI-9924: Fix: Spec. refers to U+007F (DELETE) as printable character
Fixed "\u0020 - \u007F" to "\u0020 - \u007E". (Also fixed/clarified punctuation and grammar.)
-rw-r--r--spec/01-lexical-syntax.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/01-lexical-syntax.md b/spec/01-lexical-syntax.md
index 4e92c7cf7b..e4764c10dc 100644
--- a/spec/01-lexical-syntax.md
+++ b/spec/01-lexical-syntax.md
@@ -41,7 +41,7 @@ classes (Unicode general category given in parentheses):
1. Parentheses `‘(’ | ‘)’ | ‘[’ | ‘]’ | ‘{’ | ‘}’ `.
1. Delimiter characters ``‘`’ | ‘'’ | ‘"’ | ‘.’ | ‘;’ | ‘,’ ``.
1. Operator characters. These consist of all printable ASCII characters
- `\u0020` - `\u007F` which are in none of the sets above, mathematical
+ (`\u0020` - `\u007E`) that are in none of the sets above, mathematical
symbols (`Sm`) and other symbols (`So`).
## Identifiers