]> granicus.if.org Git - python/commitdiff
#2079: typo in userdict docs.
authorGeorg Brandl <georg@python.org>
Thu, 21 Feb 2008 20:34:22 +0000 (20:34 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 21 Feb 2008 20:34:22 +0000 (20:34 +0000)
Doc/lib/libuserdict.tex

index 0bb57c826aebb189f9dc81fdcb73895c01c78f73..c4c5ca913eeed4b54c8111a7e63f698335518a8a 100644 (file)
@@ -10,7 +10,7 @@ methods 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