diff options
author | Araq <rumpf_a@web.de> | 2015-04-24 12:36:41 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-04-24 12:36:41 +0200 |
commit | 9e4e7ca5356e08ca69cb82fd0c01c19f8f8f5076 (patch) | |
tree | bfa924ff55e04b5834ac49d88cdcceaa57dc666d /doc/grammar.txt | |
parent | c01d9d081bdb834de2063f7120c24aecfc19ce9d (diff) | |
download | Nim-9e4e7ca5356e08ca69cb82fd0c01c19f8f8f5076.tar.gz |
fixes #2533
Diffstat (limited to 'doc/grammar.txt')
-rw-r--r-- | doc/grammar.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/grammar.txt b/doc/grammar.txt index b53515495..72dc6c974 100644 --- a/doc/grammar.txt +++ b/doc/grammar.txt @@ -179,7 +179,7 @@ simpleStmt = ((returnStmt | raiseStmt | yieldStmt | discardStmt | breakStmt | continueStmt | pragmaStmt | importStmt | exportStmt | fromStmt | includeStmt | commentStmt) / exprStmt) COMMENT? complexOrSimpleStmt = (ifStmt | whenStmt | whileStmt - | tryStmt | finallyStmt | exceptStmt | forStmt + | tryStmt | forStmt | blockStmt | staticStmt | deferStmt | asmStmt | 'proc' routine | 'method' routine |