summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-01-07 17:32:13 (GMT)
committerGeorg Brandl <georg@python.org>2008-01-07 17:32:13 (GMT)
commit22ec03c286094298227b2068fa02bcafedf76860 (patch)
treebfe0b6dd2acf0fb5029c50e7b4db4db84640de3c /Doc/tutorial
parent043d6f67c7b79a6d268c6ad31d8ff7710ac3e5ee (diff)
downloadcpython-22ec03c286094298227b2068fa02bcafedf76860.zip
cpython-22ec03c286094298227b2068fa02bcafedf76860.tar.gz
cpython-22ec03c286094298227b2068fa02bcafedf76860.tar.bz2
Fix merge glitch.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r--Doc/tutorial/introduction.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst
index 1189ce8..fa412e9 100644
--- a/Doc/tutorial/introduction.rst
+++ b/Doc/tutorial/introduction.rst
@@ -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