From a145b4c61ccd5e6cfa216191c3e8b378c9148530 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 19 Dec 2012 09:17:32 -0800 Subject: [PATCH] Correct module name. --- doc/format.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/format.rst b/doc/format.rst index 0509de7a..2eeac0c0 100644 --- a/doc/format.rst +++ b/doc/format.rst @@ -9,7 +9,7 @@ The built-in string class provides the ability to do complex variable substitutions and value formatting via the :func:`format` method described in - :pep:`3101`. The :class:`Formatter` class in the :mod:`string` module allows + :pep:`3101`. The :class:`Formatter` class in the :mod:`format` module allows you to create and customize your own string formatting behaviors using the same implementation as the built-in :meth:`format` method.