diff options
author | diegoe <diegoe@gmail.com> | 2021-02-03 03:28:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-03 03:28:36 (GMT) |
commit | a98fe02d735e7bfe369fc5ce6efb6c9d82adf3b7 (patch) | |
tree | 9bb1aa5f99aa4060a3f5f3fe98b571f9a862bf79 /Doc/howto/descriptor.rst | |
parent | 1ba08a121a25fcf7c947d8d37e72e46dae59168c (diff) | |
download | cpython-a98fe02d735e7bfe369fc5ce6efb6c9d82adf3b7.zip cpython-a98fe02d735e7bfe369fc5ce6efb6c9d82adf3b7.tar.gz cpython-a98fe02d735e7bfe369fc5ce6efb6c9d82adf3b7.tar.bz2 |
bpo-43082: Remove redundant 'the' in Descriptor howto (GH-24394)
Diffstat (limited to 'Doc/howto/descriptor.rst')
-rw-r--r-- | Doc/howto/descriptor.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst index d172c9b..5455d91 100644 --- a/Doc/howto/descriptor.rst +++ b/Doc/howto/descriptor.rst @@ -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 |