]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43082: Remove redundant 'the' in Descriptor howto (GH-24394)
authordiegoe <diegoe@gmail.com>
Wed, 3 Feb 2021 03:28:36 +0000 (22:28 -0500)
committerGitHub <noreply@github.com>
Wed, 3 Feb 2021 03:28:36 +0000 (19:28 -0800)
Doc/howto/descriptor.rst

index d172c9b181c1ce3851e15fa0788710b735c8868c..5455d914dce792f8d673110ef369e80384763517 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