]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Docs: fix typo in `Doc/howto/mro.rst` (GH-129095) (GH-129122)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 21 Jan 2025 09:40:31 +0000 (10:40 +0100)
committerGitHub <noreply@github.com>
Tue, 21 Jan 2025 09:40:31 +0000 (10:40 +0100)
(cherry picked from commit da310d209a6af45e5e1ea48a873f1d14be471a09)

Co-authored-by: smelnikov <13030121+smelnikov@users.noreply.github.com>
Doc/howto/mro.rst

index 46db516e16dae4f2eae308797d3409d07200dfbe..0872bedcd3a2d340c2b4fe0c65a66087f183451e 100644 (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