summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-02-03 03:33:35 (GMT)
committerGitHub <noreply@github.com>2021-02-03 03:33:35 (GMT)
commitf02ef7afcf67db52f169f809a1b0babb80ec8370 (patch)
tree8aa5f318568d17c012758690360650b1d849d604
parent3b9452691ae8f3ccf6591769b4529b03c42bc268 (diff)
downloadcpython-f02ef7afcf67db52f169f809a1b0babb80ec8370.zip
cpython-f02ef7afcf67db52f169f809a1b0babb80ec8370.tar.gz
cpython-f02ef7afcf67db52f169f809a1b0babb80ec8370.tar.bz2
bpo-43082: Remove redundant 'the' in Descriptor howto (GH-24394) (GH-24427)
-rw-r--r--Doc/howto/descriptor.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst
index ab5a573..0f999c9 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