summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-09-04 02:40:38 (GMT)
committerGuido van Rossum <guido@python.org>2007-09-04 02:40:38 (GMT)
commit5eb520cf1e715f4c40d0742a80f85c0be9e1297c (patch)
tree292e9442ee117f85ca4582a97019b2d5761d9111
parent4207f78746d5303bd21b784c0f31256a88b366bc (diff)
downloadcpython-5eb520cf1e715f4c40d0742a80f85c0be9e1297c.zip
cpython-5eb520cf1e715f4c40d0742a80f85c0be9e1297c.tar.gz
cpython-5eb520cf1e715f4c40d0742a80f85c0be9e1297c.tar.bz2
Fix sinple typo.
-rw-r--r--Doc/whatsnew/3.0.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst
index 1884a1f..ba3e7ef 100644
--- a/Doc/whatsnew/3.0.rst
+++ b/Doc/whatsnew/3.0.rst
@@ -241,7 +241,7 @@ language and built-in functions.
* PEP 3104: ``nonlocal`` statement. Using ``nonlocal x`` you can now
assign directly to a variable in an outer (but non-global) scope.
-* PEP 3105: ``print`` is now a function. Keyword argumemts
+* PEP 3105: ``print`` is now a function. Keyword arguments
``file=sys.stdout``, ``sep=" "`` and ``end="\n"`` let you customize
it.