summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-12-22 00:50:56 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-12-22 00:50:56 (GMT)
commiteabc0e87af4a7b45f2e08e438b9d03ada2052080 (patch)
tree91c973b7f81ef7a2e3db5cd9bda724003e344f4d /Objects
parentd5624cf6c99d01505c60599ace91af5013ec393c (diff)
downloadcpython-eabc0e87af4a7b45f2e08e438b9d03ada2052080.zip
cpython-eabc0e87af4a7b45f2e08e438b9d03ada2052080.tar.gz
cpython-eabc0e87af4a7b45f2e08e438b9d03ada2052080.tar.bz2
Typo fix
Diffstat (limited to 'Objects')
-rw-r--r--Objects/dictnotes.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictnotes.txt b/Objects/dictnotes.txt
index b0e59a7..3b63197 100644
--- a/Objects/dictnotes.txt
+++ b/Objects/dictnotes.txt
@@ -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.