]> granicus.if.org Git - python/commitdiff
#2079: typo in userdict docs.
authorGeorg Brandl <georg@python.org>
Thu, 21 Feb 2008 20:33:38 +0000 (20:33 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 21 Feb 2008 20:33:38 +0000 (20:33 +0000)
Doc/library/userdict.rst

index a97732d03cc797b9fe40b2fe4b54e55e060e7262..7d3640153c9ed13aca8d44e44bd84b6ce724a8ee 100644 (file)
@@ -11,7 +11,7 @@ for classes that already have a minimum mapping interface.  This greatly
 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