From: Guido van Rossum Date: Tue, 4 Sep 2007 02:40:38 +0000 (+0000) Subject: Fix sinple typo. X-Git-Tag: v3.0a2~464 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5eb520cf1e715f4c40d0742a80f85c0be9e1297c;p=thirdparty%2FPython%2Fcpython.git Fix sinple typo. --- diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst index 1884a1fa6df6..ba3e7efa87c6 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.