Skip to content

Commit 039cc8d

Browse files
committed
Fixed missing quote on bracket literal
1 parent ff6b71f commit 039cc8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/rust.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1955,7 +1955,7 @@ if_expr : "if" expr '{' block '}'
19551955
[ "else" else_tail ] ? ;
19561956
19571957
else_tail : "else" [ if_expr
1958-
| '{' block '} ] ;
1958+
| '{' block '}' ] ;
19591959
~~~~~~~~
19601960

19611961
An `if` expression is a conditional branch in program control. The form of

0 commit comments

Comments
 (0)