From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 3 Feb 2021 03:33:35 +0000 (-0800) Subject: bpo-43082: Remove redundant 'the' in Descriptor howto (GH-24394) (GH-24427) X-Git-Tag: v3.9.2rc1~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f02ef7afcf67db52f169f809a1b0babb80ec8370;p=thirdparty%2FPython%2Fcpython.git bpo-43082: Remove redundant 'the' in Descriptor howto (GH-24394) (GH-24427) --- diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst index ab5a573c6a06..0f999c95596a 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