]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Typo fix
authorAndrew M. Kuchling <amk@amk.ca>
Fri, 22 Dec 2006 00:50:56 +0000 (00:50 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Fri, 22 Dec 2006 00:50:56 +0000 (00:50 +0000)
Objects/dictnotes.txt

index b0e59a7f10f94686857ad03e665941c26b43fe79..3b63197e79461c5952225670ce23681c0498ba35 100644 (file)
@@ -44,7 +44,7 @@ Uniquification
             d.setdefault(word, []).append(pagenumber)
 
     Note, the second example is a use case characterized by a get and set
-    to the same key.  There are similar used cases with a __contains__
+    to the same key.  There are similar use cases with a __contains__
     followed by a get, set, or del to the same key.  Part of the
     justification for d.setdefault is combining the two lookups into one.