summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-02-21 20:34:22 (GMT)
committerGeorg Brandl <georg@python.org>2008-02-21 20:34:22 (GMT)
commit799e580ad4b5ca6c0c678d2926361e9c4bd01b71 (patch)
tree2857c96ba377cfdd36d24a7a90e2e25e90677219 /Doc
parent3a32cffdadc121706abb9f38308095b5a0756826 (diff)
downloadcpython-799e580ad4b5ca6c0c678d2926361e9c4bd01b71.zip
cpython-799e580ad4b5ca6c0c678d2926361e9c4bd01b71.tar.gz
cpython-799e580ad4b5ca6c0c678d2926361e9c4bd01b71.tar.bz2
#2079: typo in userdict docs.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libuserdict.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libuserdict.tex b/Doc/lib/libuserdict.tex
index 0bb57c8..c4c5ca9 100644
--- a/Doc/lib/libuserdict.tex
+++ b/Doc/lib/libuserdict.tex
@@ -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