]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#16556: Fix inconsistency between kwds and kwargs. Patch by Taavi Burns.
authorEzio Melotti <ezio.melotti@gmail.com>
Tue, 27 Nov 2012 17:17:57 +0000 (19:17 +0200)
committerEzio Melotti <ezio.melotti@gmail.com>
Tue, 27 Nov 2012 17:17:57 +0000 (19:17 +0200)
Doc/library/string.rst

index 79d4e3f47aa1290bde0145ff32c1a3a8a6f1fb52..d821339f40ae5b31b5c178a21eb3b3f6db30a4ca 100644 (file)
@@ -100,7 +100,7 @@ implementation as the built-in :meth:`format` method.
       This function does the actual work of formatting.  It is exposed as a
       separate function for cases where you want to pass in a predefined
       dictionary of arguments, rather than unpacking and repacking the
-      dictionary as individual arguments using the ``*args`` and ``**kwds``
+      dictionary as individual arguments using the ``*args`` and ``**kwargs``
       syntax.  :meth:`vformat` does the work of breaking up the format string
       into character data and replacement fields.  It calls the various
       methods described below.