]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43082: Remove redundant 'the' in Descriptor howto (GH-24394) (GH-24427)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 3 Feb 2021 03:33:35 +0000 (19:33 -0800)
committerGitHub <noreply@github.com>
Wed, 3 Feb 2021 03:33:35 +0000 (19:33 -0800)
Doc/howto/descriptor.rst

index ab5a573c6a06d10b704baeaeea6efc9a531317b7..0f999c95596aafe51cc37d221efb286c896ce1f6 100644 (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