From a98fe02d735e7bfe369fc5ce6efb6c9d82adf3b7 Mon Sep 17 00:00:00 2001 From: diegoe Date: Tue, 2 Feb 2021 22:28:36 -0500 Subject: bpo-43082: Remove redundant 'the' in Descriptor howto (GH-24394) --- Doc/howto/descriptor.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst index d172c9b181c..5455d914dce 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 -- cgit v1.2.3-65-gdbad