]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix sinple typo.
authorGuido van Rossum <guido@python.org>
Tue, 4 Sep 2007 02:40:38 +0000 (02:40 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 4 Sep 2007 02:40:38 +0000 (02:40 +0000)
Doc/whatsnew/3.0.rst

index 1884a1fa6df648a0d49a778ec3e8f2242114bcb8..ba3e7efa87c6b0cc8007e0efaa17872a20aa63d9 100644 (file)
@@ -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.