diff options
author | Mariatta <Mariatta@users.noreply.github.com> | 2017-04-13 23:38:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-13 23:38:17 (GMT) |
commit | 118cf91a312fcee11309b80f30c8a9ba901042da (patch) | |
tree | d83c615d97adf97947a379c045d9721a27761810 /Doc/library | |
parent | e2cf9a918439006fb27f67c1939d0370886650e7 (diff) | |
download | cpython-118cf91a312fcee11309b80f30c8a9ba901042da.zip cpython-118cf91a312fcee11309b80f30c8a9ba901042da.tar.gz cpython-118cf91a312fcee11309b80f30c8a9ba901042da.tar.bz2 |
[3.5] Fix a typo in Doc/library/functions.rst (GH-1117) (GH-1124)
Replace `For object's ... ` with `For objects ...`
(cherry picked from commit 873ef20d0007b4b120933473e6252d2309a70102)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 80b5326..d6fa35a 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -604,7 +604,7 @@ are always available. They are listed here in alphabetical order. .. note:: - For object's with custom :meth:`__hash__` methods, note that :func:`hash` + For objects with custom :meth:`__hash__` methods, note that :func:`hash` truncates the return value based on the bit width of the host machine. See :meth:`__hash__` for details. |