diff --git a/src/expressions/match-expr.md b/src/expressions/match-expr.md index 866ae48e67b6c..a83b629eac737 100644 --- a/src/expressions/match-expr.md +++ b/src/expressions/match-expr.md @@ -18,7 +18,7 @@ >    [_OuterAttribute_]\* _MatchArmPatterns_ _MatchArmGuard_? > > _MatchArmPatterns_ : ->    `|`? _Pattern_ ( `|` _Pattern_ )* +>    `|`? _Pattern_ ( `|` _Pattern_ )\* > > _MatchArmGuard_ : >    `if` [_Expression_] @@ -183,4 +183,3 @@ let message = match maybe_digit { [numeric types]: types.html#numeric-types [_InnerAttribute_]: attributes.html [_OuterAttribute_]: attributes.html -[range]: expressions/range-expr.html diff --git a/src/items/use-declarations.md b/src/items/use-declarations.md index c13412458eb0c..eb3b45e5c64ba 100644 --- a/src/items/use-declarations.md +++ b/src/items/use-declarations.md @@ -6,7 +6,7 @@ > > _UseTree_ : >       ([_SimplePath_]? `::`)? `*` ->    | ([_SimplePath_]? `::`)? `{` (_UseTree_ ( `,` _UseTree_ )* `,`?)? `}` +>    | ([_SimplePath_]? `::`)? `{` (_UseTree_ ( `,` _UseTree_ )\* `,`?)? `}` >    | [_SimplePath_] `as` [IDENTIFIER] A _use declaration_ creates one or more local name bindings synonymous with