diff options
author | Georg Brandl <georg@python.org> | 2008-05-12 16:50:12 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-12 16:50:12 (GMT) |
commit | 1c502b5118672b0149e919beb3d3929161120680 (patch) | |
tree | a68856dbd9ef910f96bfcd3ed59b98f498117f85 | |
parent | dce26da49cb1f3865340814b71e31a9f6be2edde (diff) | |
download | cpython-1c502b5118672b0149e919beb3d3929161120680.zip cpython-1c502b5118672b0149e919beb3d3929161120680.tar.gz cpython-1c502b5118672b0149e919beb3d3929161120680.tar.bz2 |
Fix typo.
-rw-r--r-- | Doc/library/stdtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 4259187..c910347 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -723,7 +723,7 @@ functions based on regular expressions. found. -.. method:: str.format(format_string, *args, **ksargs) +.. method:: str.format(format_string, *args, **kwargs) Perform a string formatting operation. The *format_string* argument can contain literal text or replacement fields delimited by braces ``{}``. Each |