]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Corrected identifier (#104713)
authorWilliam Sawyer <wmsawyer2609@gmail.com>
Sun, 21 May 2023 05:57:50 +0000 (15:57 +1000)
committerGitHub <noreply@github.com>
Sun, 21 May 2023 05:57:50 +0000 (01:57 -0400)
Doc/library/operator.rst

index 6d90473f2367b5265463b266e5d06d9c3c64a0be..dab4de9eb6abb79b3daa95ace59b5f2b27569934 100644 (file)
@@ -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.