diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-08-04 20:37:43 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-08-04 20:37:43 (GMT) |
commit | 0067b5fa2b565f6c5e19a696d5f81955062a5cf2 (patch) | |
tree | d4563203e31a130c87abf227feb8ce7ab2605e73 /Objects/dictnotes.txt | |
parent | db7b443d8a633b0ddb5f14a57746b518170d560b (diff) | |
download | cpython-0067b5fa2b565f6c5e19a696d5f81955062a5cf2.zip cpython-0067b5fa2b565f6c5e19a696d5f81955062a5cf2.tar.gz cpython-0067b5fa2b565f6c5e19a696d5f81955062a5cf2.tar.bz2 |
Typo fixes
Diffstat (limited to 'Objects/dictnotes.txt')
-rw-r--r-- | Objects/dictnotes.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictnotes.txt b/Objects/dictnotes.txt index cb46cb1..b0e59a7 100644 --- a/Objects/dictnotes.txt +++ b/Objects/dictnotes.txt @@ -243,7 +243,7 @@ kept just for iteration. Caching Lookups --------------- The idea is to exploit key access patterns by anticipating future lookups -based of previous lookups. +based on previous lookups. The simplest incarnation is to save the most recently accessed entry. This gives optimal performance for use cases where every get is followed |