summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-01-20 15:09:51 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-01-20 15:09:51 (GMT)
commit668d2cc3d8a6f4336b20208e27de58554f04ec68 (patch)
tree52966e516a7587050fb4770fefb6ddc8fdf23c4e /Doc
parente7ce184fe84fa2edba79dd7f0b78e29f10b64c37 (diff)
parent648fa19745415738f53adc94f0e3a02d3aaf6e46 (diff)
downloadcpython-668d2cc3d8a6f4336b20208e27de58554f04ec68.zip
cpython-668d2cc3d8a6f4336b20208e27de58554f04ec68.tar.gz
cpython-668d2cc3d8a6f4336b20208e27de58554f04ec68.tar.bz2
merge 3.3
Diffstat (limited to 'Doc')
-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 130385b..4b7f60d 100644
--- a/Doc/tutorial/introduction.rst
+++ b/Doc/tutorial/introduction.rst
@@ -611,8 +611,8 @@ This example introduces several new features.
>>> print('The value of i is', i)
The value of i is 65536
- The keyword *end* can be used to avoid the newline after the output, or end
- the output with a different string::
+ The keyword argument *end* can be used to avoid the newline after the output,
+ or end the output with a different string::
>>> a, b = 0, 1
>>> while b < 1000: