diff options
author | narimiran <narimiran@disroot.org> | 2021-01-28 09:42:24 +0100 |
---|---|---|
committer | narimiran <narimiran@disroot.org> | 2021-01-28 09:42:24 +0100 |
commit | 37a98c6c58d25d69f0a4cb655d976c40375097db (patch) | |
tree | e890b9bca710e25333a57ce095780b692c79f291 | |
parent | 0d1c5f413794cdc9b84b5f6738df235bc648d195 (diff) | |
download | Nim-37a98c6c58d25d69f0a4cb655d976c40375097db.tar.gz |
small fix in grammar.txt [ci skip]
-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 f5e619ebc..0d5eef179 100644 --- a/doc/grammar.txt +++ b/doc/grammar.txt @@ -119,7 +119,7 @@ raiseStmt = 'raise' optInd expr? yieldStmt = 'yield' optInd expr? discardStmt = 'discard' optInd expr? breakStmt = 'break' optInd expr? -continueStmt = 'break' optInd expr? +continueStmt = 'continue' optInd expr? condStmt = expr colcom stmt COMMENT? (IND{=} 'elif' expr colcom stmt)* (IND{=} 'else' colcom stmt)? |