diff options
author | Robert Baruch <robert.c.baruch@gmail.com> | 2020-11-22 21:08:58 -0800 |
---|---|---|
committer | Robert Baruch <robert.c.baruch@gmail.com> | 2020-11-22 21:08:58 -0800 |
commit | d3d28e287f1935a25e288ecdbb50060bc4d0de84 (patch) | |
tree | 586c7ae01510c468a387e003e4de9234aa00802d | |
parent | c5a2ae01cd6b7d5f59b627eae7779359737bb847 (diff) | |
download | yosys-d3d28e287f1935a25e288ecdbb50060bc4d0de84.tar.gz yosys-d3d28e287f1935a25e288ecdbb50060bc4d0de84.tar.bz2 yosys-d3d28e287f1935a25e288ecdbb50060bc4d0de84.zip |
Adds missing "end" and eol to module.
-rw-r--r-- | manual/CHAPTER_TextRtlil.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/CHAPTER_TextRtlil.tex b/manual/CHAPTER_TextRtlil.tex index 30ddaafd3..e84235398 100644 --- a/manual/CHAPTER_TextRtlil.tex +++ b/manual/CHAPTER_TextRtlil.tex @@ -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> |