Format lists properly.

This commit is contained in:
Simon Forman
2020-05-10 12:46:33 -07:00
parent e5bd03ac70
commit 548709c87a
2 changed files with 10 additions and 4 deletions
+2 -2
View File
@@ -25,8 +25,8 @@ values from (at least) one end.
There is no "Stack" Python class, instead we use the `cons list`_, a
venerable two-tuple recursive sequence datastructure, where the
empty tuple ``()`` is the empty stack and ``(head, rest)`` gives the recursive
form of a stack with one or more items on it::
empty tuple ``()`` is the empty stack and ``(head, rest)`` gives the
recursive form of a stack with one or more items on it::
stack := () | (item, stack)