Add missing ']' in book example.

Fixes #880.
This commit is contained in:
Brian Huffman 2020-09-22 17:39:17 -07:00
parent 8ba6570324
commit c4299a148b

View File

@ -1598,7 +1598,7 @@ starting the count at 0 as usual.) We can observe this much more
simply, by using a smaller bit size for the constant {\tt 1}:
\begin{Verbatim}
Cryptol> [(1:[2])...]
[1, 2, 3, 0, 1 ...
[1, 2, 3, 0, 1 ...]
Cryptol> take`{20} [(1:[2])...]
[1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0]
\end{Verbatim}