summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-05-26 08:20:37 (GMT)
committerGitHub <noreply@github.com>2024-05-26 08:20:37 (GMT)
commit3f0198d927398ca843097bc2b03aa616a7d35c6e (patch)
treefe86992b337a544bdfac1f8de2e4721e15ff97a2 /Doc/howto
parent2404cd94603bc585e617f0544e34560fa15b2713 (diff)
downloadcpython-3f0198d927398ca843097bc2b03aa616a7d35c6e.zip
cpython-3f0198d927398ca843097bc2b03aa616a7d35c6e.tar.gz
cpython-3f0198d927398ca843097bc2b03aa616a7d35c6e.tar.bz2
[3.13] docs: fix a few typos identified by codespell (GH-119516) (#119570)
Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/mro.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/mro.rst b/Doc/howto/mro.rst
index a44ef68..f44b4f9 100644
--- a/Doc/howto/mro.rst
+++ b/Doc/howto/mro.rst
@@ -426,7 +426,7 @@ In this case the MRO is GFEF and the local precedence ordering is
preserved.
As a general rule, hierarchies such as the previous one should be
-avoided, since it is unclear if F should override E or viceversa.
+avoided, since it is unclear if F should override E or vice-versa.
Python 2.3 solves the ambiguity by raising an exception in the creation
of class G, effectively stopping the programmer from generating
ambiguous hierarchies. The reason for that is that the C3 algorithm