bpo-33957: Doc: Use better wording (GH-7912)

(cherry picked from commit 866c168a5f)

Co-authored-by: Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) <srinivasreddy@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2018-06-26 01:47:10 -07:00 committed by GitHub
parent ee60e36fbf
commit 829b7669f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ on the key and a per-process seed; for example, "Python" could hash to
to 1142331976. The hash code is then used to calculate a location in an
internal array where the value will be stored. Assuming that you're storing
keys that all have different hash values, this means that dictionaries take
constant time -- O(1), in computer science notation -- to retrieve a key.
constant time -- O(1), in Big-O notation -- to retrieve a key.
Why must dictionary keys be immutable?