diff options
author | William Sawyer <wmsawyer2609@gmail.com> | 2023-05-21 05:57:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-21 05:57:50 (GMT) |
commit | 60993ba8b4a04dfcf2d3067d919bcce160f01bd5 (patch) | |
tree | 851477690236ba450c157fc5877fe4c174bad0ce /Doc/library/operator.rst | |
parent | 99b641886a09252bbcf99a1d322fa8734f1ca30d (diff) | |
download | cpython-60993ba8b4a04dfcf2d3067d919bcce160f01bd5.zip cpython-60993ba8b4a04dfcf2d3067d919bcce160f01bd5.tar.gz cpython-60993ba8b4a04dfcf2d3067d919bcce160f01bd5.tar.bz2 |
Corrected identifier (#104713)
Diffstat (limited to 'Doc/library/operator.rst')
-rw-r--r-- | Doc/library/operator.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index 6d90473..dab4de9 100644 --- a/Doc/library/operator.rst +++ b/Doc/library/operator.rst @@ -244,7 +244,7 @@ Operations which work with sequences (some of them with mappings too) include: .. function:: length_hint(obj, default=0) - Return an estimated length for the object *o*. First try to return its + Return an estimated length for the object *obj*. First try to return its actual length, then an estimate using :meth:`object.__length_hint__`, and finally return the default value. |