[3.13] Docs: fix typo in Doc/howto/mro.rst (GH-129095) (GH-129122)

(cherry picked from commit da310d209a)

Co-authored-by: smelnikov <13030121+smelnikov@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2025-01-21 10:40:31 +01:00 committed by GitHub
parent f10f2a2e77
commit 8ab29d95a2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -398,7 +398,7 @@ with inheritance diagram
We see that class G inherits from F and E, with F *before* E: therefore
we would expect the attribute *G.remember2buy* to be inherited by
*F.rembermer2buy* and not by *E.remember2buy*: nevertheless Python 2.2
*F.remember2buy* and not by *E.remember2buy*: nevertheless Python 2.2
gives
>>> G.remember2buy # doctest: +SKIP