summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2018-11-07 20:07:20 +0100
committerAndreas Rumpf <rumpf_a@web.de>2018-11-07 20:07:43 +0100
commit4e94f49065d577831742b37ffbba300ff74506df (patch)
treecb8b9792ad9bbc7ae1d6ea816e27da6b26d006ae /compiler
parent1c73db08b8d4f847f2868d8f5a3284cfb4e47428 (diff)
downloadNim-4e94f49065d577831742b37ffbba300ff74506df.tar.gz
parser/grammar sync; fixes #9608 [backport]
Diffstat (limited to 'compiler')
-rw-r--r--compiler/parser.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/parser.nim b/compiler/parser.nim
index 6e83a6710..fd2a52e78 100644
--- a/compiler/parser.nim
+++ b/compiler/parser.nim
@@ -282,7 +282,7 @@ proc checkBinary(p: TParser) {.inline.} =
 #|
 #| prefixOperator = operator
 #|
-#| optInd = COMMENT?
+#| optInd = COMMENT? IND?
 #| optPar = (IND{>} | IND{=})?
 #|
 #| simpleExpr = arrowExpr (OP0 optInd arrowExpr)* pragma?