diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2008-08-18 13:32:19 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2008-08-18 13:32:19 (GMT) |
commit | 8e439a16b25c3204ddddb71628d38745cc4299f4 (patch) | |
tree | cb7ea5fc3fa4c1aaa5fb9cb3ccb4fba45a1bba0d /Doc/c-api | |
parent | 6e8fef07e5d1a3372d0c729c81dd383a23b053d5 (diff) | |
download | cpython-8e439a16b25c3204ddddb71628d38745cc4299f4.zip cpython-8e439a16b25c3204ddddb71628d38745cc4299f4.tar.gz cpython-8e439a16b25c3204ddddb71628d38745cc4299f4.tar.bz2 |
Fix typo
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/object.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/object.rst b/Doc/c-api/object.rst index 883d095..a2487ff 100644 --- a/Doc/c-api/object.rst +++ b/Doc/c-api/object.rst @@ -273,7 +273,7 @@ is considered sufficient for this determination. Set a TypeError indicating that ``type(o)`` is not hashable and return ``-1``. This function receives special treatment when stored in a ``tp_hash`` slot, - allowing a type to explicit indicate to the interpreter that it is not + allowing a type to explicitly indicate to the interpreter that it is not hashable. .. versionadded:: 2.6 |