[Python-checkins] [3.11] Corrected identifier (GH-104713) (#104714)

terryjreedy webhook-mailer at python.org
Sun May 21 02:06:24 EDT 2023


https://github.com/python/cpython/commit/dc0c41b2e5ec64854caa9055f2c7388e22fa4bf8
commit: dc0c41b2e5ec64854caa9055f2c7388e22fa4bf8
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: terryjreedy <tjreedy at udel.edu>
date: 2023-05-21T02:06:17-04:00
summary:

[3.11] Corrected identifier (GH-104713) (#104714)

Corrected identifier (GH-104713)
(cherry picked from commit 60993ba8b4a04dfcf2d3067d919bcce160f01bd5)

Co-authored-by: William Sawyer <wmsawyer2609 at gmail.com>

files:
M Doc/library/operator.rst

diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
index 6d90473f2367..dab4de9eb6ab 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.
 



More information about the Python-checkins mailing list