diff options
author | Éric Araujo <merwok@netwok.org> | 2011-03-22 20:45:42 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-03-22 20:45:42 (GMT) |
commit | 4fbd88a078668a4094d398f60fcdf6c39adbbe6f (patch) | |
tree | 17f0c6cd7b7ae4abf0b9cf0658ce43b756068061 /Doc/tutorial | |
parent | 911da479960a72db08154b237e8f5fd4b5ace2f4 (diff) | |
download | cpython-4fbd88a078668a4094d398f60fcdf6c39adbbe6f.zip cpython-4fbd88a078668a4094d398f60fcdf6c39adbbe6f.tar.gz cpython-4fbd88a078668a4094d398f60fcdf6c39adbbe6f.tar.bz2 |
Fix typo spotted by Sandro Tosi
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/classes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index bdaa5d2..ed0e655 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -518,7 +518,7 @@ other multiple-inheritance languages as call-next-method and is more powerful than the super call found in single-inheritance languages. With new-style classes, dynamic ordering is necessary because all cases of -multiple inheritance exhibit one or more diamond relationships (where one at +multiple inheritance exhibit one or more diamond relationships (where at least one of the parent classes can be accessed through multiple paths from the bottommost class). For example, all new-style classes inherit from :class:`object`, so any case of multiple inheritance provides more than one path |