summaryrefslogtreecommitdiffstats
path: root/Doc/howto/mro.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2024-05-26 01:13:31 (GMT)
committerGitHub <noreply@github.com>2024-05-26 01:13:31 (GMT)
commitd25954dff5409c8926d2a4053d3e892462f8b8b5 (patch)
tree46819604087f2ebf16bbdec8532127180496c0db /Doc/howto/mro.rst
parente418fc3a6e7bade68ab5dfe72f14ddba28e6acb5 (diff)
downloadcpython-d25954dff5409c8926d2a4053d3e892462f8b8b5.zip
cpython-d25954dff5409c8926d2a4053d3e892462f8b8b5.tar.gz
cpython-d25954dff5409c8926d2a4053d3e892462f8b8b5.tar.bz2
docs: fix a few typos identified by codespell (#119516)
Diffstat (limited to 'Doc/howto/mro.rst')
-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