[Python-checkins] bpo-43082: Remove redundant 'the' in Descriptor howto (GH-24394) (GH-24427)

rhettinger webhook-mailer at python.org
Tue Feb 2 22:33:41 EST 2021


https://github.com/python/cpython/commit/f02ef7afcf67db52f169f809a1b0babb80ec8370
commit: f02ef7afcf67db52f169f809a1b0babb80ec8370
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: rhettinger <rhettinger at users.noreply.github.com>
date: 2021-02-02T19:33:35-08:00
summary:

bpo-43082: Remove redundant 'the' in Descriptor howto (GH-24394) (GH-24427)

files:
M Doc/howto/descriptor.rst

diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst
index ab5a573c6a06d..0f999c95596aa 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



More information about the Python-checkins mailing list