aboutsummaryrefslogtreecommitdiffstats
path: root/1-lexer.md
diff options
context:
space:
mode:
authorm8pple <dt10@imperial.ac.uk>2017-01-30 11:50:14 +0000
committerGitHub <noreply@github.com>2017-01-30 11:50:14 +0000
commite44c3dcbf4d85315e7fffc7c3c0717293f40fb1b (patch)
tree717f1eefc7b0e0b02cf2babef606163f8c00c0c7 /1-lexer.md
parent80f0f762c9ff26b38d2fb75f72d1e02107bc55e0 (diff)
downloadCompiler-e44c3dcbf4d85315e7fffc7c3c0717293f40fb1b.tar.gz
Compiler-e44c3dcbf4d85315e7fffc7c3c0717293f40fb1b.zip
Clarify char constants. Thanks to @luisi-at. Closes #5.
Diffstat (limited to '1-lexer.md')
-rw-r--r--1-lexer.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/1-lexer.md b/1-lexer.md
index 809f197..8f91d71 100644
--- a/1-lexer.md
+++ b/1-lexer.md
@@ -58,7 +58,7 @@ Each dictionary should have the following properties:
- "Operator" : `(`, `[`, `+`
- - "Constant" : `42`, `1.0`, ...
+ - "Constant" : `42`, `1.0`, `'x'`, `' '`...
- "StringLiteral" : `"Is it too late now to say sorry?"`, `"Cause I'm missing more than just"`, ...