summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2002-06-30 04:32:38 (GMT)
committerRaymond Hettinger <python@rcn.com>2002-06-30 04:32:38 (GMT)
commit8a9e8b6d0e3c9c374645887602fc0186d70304d2 (patch)
tree157039a15d10b4aa29a6efdd87f16625271c2237 /Doc
parent46ac8eb3c899b498299a2f8fbcdd4ed3f32addba (diff)
downloadcpython-8a9e8b6d0e3c9c374645887602fc0186d70304d2.zip
cpython-8a9e8b6d0e3c9c374645887602fc0186d70304d2.tar.gz
cpython-8a9e8b6d0e3c9c374645887602fc0186d70304d2.tar.bz2
Fix bug 575221 referred to dictionary type instead of dict.
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 7e6d666..d665686 100644
--- a/Doc/lib/libuserdict.tex
+++ b/Doc/lib/libuserdict.tex
@@ -7,7 +7,7 @@
\note{This module is available for backward compatibility only. If
you are writing code that does not need to work with versions of
Python earlier than Python 2.2, please consider subclassing directly
-from the built-in \class{dictionary} type.}
+from the built-in \class{dict} type.}
This module defines a class that acts as a wrapper around
dictionary objects. It is a useful base class for