Fixed missing quote on bracket literal

This commit is contained in:
Daniel Luz 2012-02-14 23:39:02 -02:00
parent ff6b71f78b
commit 039cc8d6c5
1 changed files with 1 additions and 1 deletions

View File

@ -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