From 2642ad07ee616c3374feee47354d1eba735b07eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Araujo?= Date: Sat, 6 Nov 2010 04:59:27 +0000 Subject: [PATCH] Fix typo from r86170. --- Doc/library/stdtypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 0a3ba996ea0..ebe7b7604c8 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.