diff --git a/src/items/generics.md b/src/items/generics.md index cf560ac4d..a8cb27ba6 100644 --- a/src/items/generics.md +++ b/src/items/generics.md @@ -13,7 +13,7 @@ TypeParam -> IDENTIFIER ( `:` TypeParamBounds? )? ( `=` Type )? ConstParam -> `const` IDENTIFIER `:` Type - ( `=` BlockExpression | IDENTIFIER | `-`?LiteralExpression )? + ( `=` ( BlockExpression | IDENTIFIER | `-`?LiteralExpression ) )? ``` r[items.generics.syntax.intro]