From: Barry Warsaw Date: Fri, 31 Jan 2003 03:30:09 +0000 (+0000) Subject: typo in comment X-Git-Tag: v2.3c1~2166 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1a17704ff18ab6aa678b346aa6f97faa37472929;p=python typo in comment --- diff --git a/Lib/UserDict.py b/Lib/UserDict.py index f9ad47109f..fb9cdd5c25 100644 --- a/Lib/UserDict.py +++ b/Lib/UserDict.py @@ -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