diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-04-20 21:00:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-20 21:00:41 (GMT) |
commit | 32955299b4b102138220150e2925de4ce7f17c82 (patch) | |
tree | 93c7661d9cd32b3e80c0df63029810ec497ea4d3 /Include/internal | |
parent | b221107d32370670905fefb569b3104748f92afe (diff) | |
download | cpython-32955299b4b102138220150e2925de4ce7f17c82.zip cpython-32955299b4b102138220150e2925de4ce7f17c82.tar.gz cpython-32955299b4b102138220150e2925de4ce7f17c82.tar.bz2 |
Spelling fixes to docs, docstrings, and comments (GH-6374)
(cherry picked from commit 61f82e0e337f971da57f8f513abfe693edf95aa5)
Co-authored-by: Ville Skyttä <ville.skytta@iki.fi>
Diffstat (limited to 'Include/internal')
-rw-r--r-- | Include/internal/hamt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/hamt.h b/Include/internal/hamt.h index 52488d0..29ad28b 100644 --- a/Include/internal/hamt.h +++ b/Include/internal/hamt.h @@ -80,7 +80,7 @@ PyHamtObject * _PyHamt_Without(PyHamtObject *o, PyObject *key); /* Find "key" in the "o" collection. Return: - - -1: An error ocurred. + - -1: An error occurred. - 0: "key" wasn't found in "o". - 1: "key" is in "o"; "*val" is set to its value (a borrowed ref). */ |