diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-02-02 19:33:35 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-02 19:33:35 -0800 |
commit | f02ef7afcf67db52f169f809a1b0babb80ec8370 (patch) | |
tree | 8aa5f318568d17c012758690360650b1d849d604 | |
parent | Add link to Microsoft docs for limitations in Windows Store package (GH-24422) (diff) | |
download | cpython-f02ef7afcf67db52f169f809a1b0babb80ec8370.tar.gz cpython-f02ef7afcf67db52f169f809a1b0babb80ec8370.tar.bz2 cpython-f02ef7afcf67db52f169f809a1b0babb80ec8370.zip |
bpo-43082: Remove redundant 'the' in Descriptor howto (GH-24394) (GH-24427)
-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 ab5a573c6a0..0f999c95596 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 |