bpo-43082: Remove redundant 'the' in Descriptor howto (GH-24394)

This commit is contained in:
diegoe 2021-02-02 22:28:36 -05:00 committed by GitHub
parent 1ba08a121a
commit a98fe02d73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -497,7 +497,7 @@ Definition and introduction
In general, a descriptor is an attribute value that has one of the methods in
the descriptor protocol. Those methods are :meth:`__get__`, :meth:`__set__`,
and :meth:`__delete__`. If any of those methods are defined for an the
and :meth:`__delete__`. If any of those methods are defined for an
attribute, it is said to be a :term:`descriptor`.
The default behavior for attribute access is to get, set, or delete the