Fixed missing quote on bracket literal
This commit is contained in:
parent
ff6b71f78b
commit
039cc8d6c5
1 changed files with 1 additions and 1 deletions
|
@ -1955,7 +1955,7 @@ if_expr : "if" expr '{' block '}'
|
|||
[ "else" else_tail ] ? ;
|
||||
|
||||
else_tail : "else" [ if_expr
|
||||
| '{' block '} ] ;
|
||||
| '{' block '}' ] ;
|
||||
~~~~~~~~
|
||||
|
||||
An `if` expression is a conditional branch in program control. The form of
|
||||
|
|
Loading…
Add table
Reference in a new issue