Skip to content

Commit 3705010

Browse files
authored
Merge pull request rust-lang#432 from ehuss/fix-range-grammar
Fix minor mistake in range grammar.
2 parents a632079 + 9823466 commit 3705010

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/expressions/range-expr.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
> _RangeFullExpr_ :\
2222
>    `..`
2323
>
24-
> _RangeExpr_ :\
24+
> _RangeInclusiveExpr_ :\
2525
>    [_Expression_] `..=` [_Expression_]
2626
>
27-
> _RangeToExpr_ :\
27+
> _RangeToInclusiveExpr_ :\
2828
>    `..=` [_Expression_]
2929
3030
The `..` and `..=` operators will construct an object of one of the

0 commit comments

Comments
 (0)