diff options
author | Joshua Diaddigo <joshuad95@hotmail.com> | 2017-04-13 17:31:37 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2017-04-13 17:31:37 (GMT) |
commit | 873ef20d0007b4b120933473e6252d2309a70102 (patch) | |
tree | 26680993af7603bd586c0ca6ff3ff6408c5ccb7d /Doc/library/functions.rst | |
parent | 8fc7bc2b7631ee819ee614e47b6f44bacebe1574 (diff) | |
download | cpython-873ef20d0007b4b120933473e6252d2309a70102.zip cpython-873ef20d0007b4b120933473e6252d2309a70102.tar.gz cpython-873ef20d0007b4b120933473e6252d2309a70102.tar.bz2 |
Fix a typo in Doc/library/functions.rst (GH-1117)
Replace `For object's ... ` with `For objects ...`
Diffstat (limited to 'Doc/library/functions.rst')
-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 9126535..138f7d0 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -610,7 +610,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. |