Skip to content

Commit

Permalink
Merge pull request #603 from MemPage/ExternalFunctionItem-fix
Browse files Browse the repository at this point in the history
Add missing ( to ExternalFunctionItem
  • Loading branch information
ehuss authored Apr 29, 2019
2 parents 94ad2b8 + 2f23e52 commit 702c4d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/items/external-blocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
>
> _ExternalFunctionItem_ :\
> &nbsp;&nbsp; `fn` [IDENTIFIER]&nbsp;[_Generics_]<sup>?</sup>\
> &nbsp;&nbsp; `(` _NamedFunctionParameters_<sup>?</sup> | _NamedFunctionParametersWithVariadics_ ) `)`\
> &nbsp;&nbsp; `(` ( _NamedFunctionParameters_ | _NamedFunctionParametersWithVariadics_ )<sup>?</sup> `)`\
> &nbsp;&nbsp; [_FunctionReturnType_]<sup>?</sup> [_WhereClause_]<sup>?</sup> `;`
>
> _NamedFunctionParameters_ :\
Expand Down

0 comments on commit 702c4d7

Please sign in to comment.