Skip to content

Commit 6c27bda

Browse files
authored
Merge pull request #604 from MemPage/Implementation-Generics-fix
Added missing ? to Generics from InherentImpl and TraitImpl
2 parents 702c4d7 + cb126ee commit 6c27bda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/items/implementations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
>    _InherentImpl_ | _TraitImpl_
66
>
77
> _InherentImpl_ :\
8-
> &nbsp;&nbsp; `impl` [_Generics_]&nbsp;[_Type_]&nbsp;[_WhereClause_]<sup>?</sup> `{`\
8+
> &nbsp;&nbsp; `impl` [_Generics_]<sup>?</sup>&nbsp;[_Type_]&nbsp;[_WhereClause_]<sup>?</sup> `{`\
99
> &nbsp;&nbsp; &nbsp;&nbsp; [_InnerAttribute_]<sup>\*</sup>\
1010
> &nbsp;&nbsp; &nbsp;&nbsp; _InherentImplItem_<sup>\*</sup>\
1111
> &nbsp;&nbsp; `}`
@@ -17,7 +17,7 @@
1717
> &nbsp;&nbsp; )
1818
>
1919
> _TraitImpl_ :\
20-
> &nbsp;&nbsp; `unsafe`<sup>?</sup> `impl` [_Generics_] `!`<sup>?</sup>
20+
> &nbsp;&nbsp; `unsafe`<sup>?</sup> `impl` [_Generics_]<sup>?</sup> `!`<sup>?</sup>
2121
> [_TypePath_] `for` [_Type_]\
2222
> &nbsp;&nbsp; [_WhereClause_]<sup>?</sup>\
2323
> &nbsp;&nbsp; `{`\

0 commit comments

Comments
 (0)