Commit 22ec03c2 authored by Georg Brandl's avatar Georg Brandl

Fix merge glitch.

parent 043d6f67
......@@ -548,8 +548,8 @@ series as follows::
... # the sum of two elements defines the next
... a, b = 0, 1
>>> while b < 10:
... print b
... a, b = b, a+b
... print(b)
... a, b = b, a+b
...
1
1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment