[Python-checkins] Fix a typo in datamodel reference document (GH-24930)

miss-islington webhook-mailer at python.org
Sun Apr 25 17:37:01 EDT 2021


https://github.com/python/cpython/commit/ab99b6a8baae33194de107685d5fd6d59d6eddf7
commit: ab99b6a8baae33194de107685d5fd6d59d6eddf7
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-04-25T14:36:57-07:00
summary:

Fix a typo in datamodel reference document (GH-24930)

(cherry picked from commit a1a5e3c4c83c3e3fe24c96ae22dfdedc7e23a1bb)

Co-authored-by: Géry Ogam <gery.ogam at gmail.com>

files:
M Doc/reference/datamodel.rst

diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 3b3bd5524ec5d..46ee8ec3cba6f 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -1773,7 +1773,7 @@ Super Binding
    immediately preceding ``B`` and then invokes the descriptor with the call:
    ``A.__dict__['m'].__get__(obj, obj.__class__)``.
 
-For instance bindings, the precedence of descriptor invocation depends on the
+For instance bindings, the precedence of descriptor invocation depends on
 which descriptor methods are defined.  A descriptor can define any combination
 of :meth:`__get__`, :meth:`__set__` and :meth:`__delete__`.  If it does not
 define :meth:`__get__`, then accessing the attribute will return the descriptor



More information about the Python-checkins mailing list