]> granicus.if.org Git - python/commitdiff
typo in comment
authorBarry Warsaw <barry@python.org>
Fri, 31 Jan 2003 03:30:09 +0000 (03:30 +0000)
committerBarry Warsaw <barry@python.org>
Fri, 31 Jan 2003 03:30:09 +0000 (03:30 +0000)
Lib/UserDict.py

index f9ad47109fead27809a2c20792d441c591241bd5..fb9cdd5c25f34fe0c578ac4e768b033a69fd5a49 100644 (file)
@@ -77,7 +77,7 @@ class DictMixin:
     # a minimum dictionary interface including getitem, setitem, delitem,
     # and keys. Without knowledge of the subclass constructor, the mixin
     # does not define __init__() or copy().  In addition to the four base
-    # methods, progessively more efficiency comes with defining
+    # methods, progressively more efficiency comes with defining
     # __contains__(), __iter__(), and iteritems().
 
     # second level definitions support higher levels