Adds missing "end" and eol to module.

This commit is contained in:
Robert Baruch 2020-11-22 21:08:58 -08:00
parent c5a2ae01cd
commit d3d28e287f
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ Note that in general, statements are terminated by an end of line.
A module consists of zero or more module statements.
\begin{indentgrammar}{<module-stmt>}
<module> ::= "module" <id> <eol> <module-stmt>$*$
<module> ::= "module" <id> <eol> <module-stmt>$*$ "end" <eol>
<module-stmt> ::=
<param-stmt>