Corrected identifier (#104713)

This commit is contained in:
William Sawyer 2023-05-21 15:57:50 +10:00 committed by GitHub
parent 99b641886a
commit 60993ba8b4
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.