summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2010-11-06 04:59:27 (GMT)
committerÉric Araujo <merwok@netwok.org>2010-11-06 04:59:27 (GMT)
commit2642ad07ee616c3374feee47354d1eba735b07eb (patch)
tree2397d12a6a131c73387665d311743b773e12d9de
parentba7209f0a5a495189c7e3267d8d0459f38b312be (diff)
downloadcpython-2642ad07ee616c3374feee47354d1eba735b07eb.zip
cpython-2642ad07ee616c3374feee47354d1eba735b07eb.tar.gz
cpython-2642ad07ee616c3374feee47354d1eba735b07eb.tar.bz2
Fix typo from r86170.
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 0a3ba99..ebe7b76 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -1040,7 +1040,7 @@ functions based on regular expressions.
.. method:: str.format_map(mapping)
- Similar to ``str.forrmat(**mapping)``, except that ``mapping`` is
+ Similar to ``str.format(**mapping)``, except that ``mapping`` is
used directly and not copied to a :class:`dict` . This is useful
if for example ``mapping`` is a dict subclass.