From 1e62bd2754d1c83959151e97c871680ca47110dc Mon Sep 17 00:00:00 2001 From: Florian Hahn Date: Sat, 24 Oct 2015 00:45:18 +0200 Subject: [PATCH] Allow bare semicolon in grammar doc, closes #28157 --- src/doc/grammar.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/grammar.md b/src/doc/grammar.md index 403922c5ed13..a400e70e97df 100644 --- a/src/doc/grammar.md +++ b/src/doc/grammar.md @@ -436,7 +436,7 @@ meta_seq : meta_item [ ',' meta_seq ] ? ; ## Statements ```antlr -stmt : decl_stmt | expr_stmt ; +stmt : decl_stmt | expr_stmt | ';' ; ``` ### Declaration statements