[Python-checkins] r60936 - python/trunk/Doc/library/userdict.rst

georg.brandl python-checkins at python.org
Thu Feb 21 21:33:39 CET 2008


Author: georg.brandl
Date: Thu Feb 21 21:33:38 2008
New Revision: 60936

Modified:
   python/trunk/Doc/library/userdict.rst
Log:
#2079: typo in userdict docs.


Modified: python/trunk/Doc/library/userdict.rst
==============================================================================
--- python/trunk/Doc/library/userdict.rst	(original)
+++ python/trunk/Doc/library/userdict.rst	Thu Feb 21 21:33:38 2008
@@ -11,7 +11,7 @@
 simplifies writing classes that need to be substitutable for dictionaries (such
 as the shelve module).
 
-This also module defines a class, :class:`UserDict`, that acts as a wrapper
+This module also defines a class, :class:`UserDict`, that acts as a wrapper
 around dictionary objects.  The need for this class has been largely supplanted
 by the ability to subclass directly from :class:`dict` (a feature that became
 available starting with Python version 2.2).  Prior to the introduction of


More information about the Python-checkins mailing list