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

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

Co-authored-by: William Sawyer <wmsawyer2609@gmail.com>
This commit is contained in:
Miss Islington (bot) 2023-05-20 23:06:17 -07:00 committed by GitHub
parent b2e0201222
commit dc0c41b2e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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.