]> granicus.if.org Git - python/commitdiff
end is a keyword argument
authorBenjamin Peterson <benjamin@python.org>
Sun, 20 Jan 2013 15:09:44 +0000 (10:09 -0500)
committerBenjamin Peterson <benjamin@python.org>
Sun, 20 Jan 2013 15:09:44 +0000 (10:09 -0500)
Doc/tutorial/introduction.rst

index 130385b26d490d7db3d97c520a87d9daee13946d..4b7f60d7321859c43cb070d0c2a04f26591a1a88 100644 (file)
@@ -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: