diff options
author | Raymond Hettinger <python@rcn.com> | 2009-02-26 00:27:18 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-02-26 00:27:18 (GMT) |
commit | d1258451e6e41e1bc7d60796bb9a6569f0442ca3 (patch) | |
tree | 91cd49b8c64320f45dcc3c7b056aaca2c6c28572 /Doc/library | |
parent | 72a95cc7b0ff2909b552e76ed409500f385d0258 (diff) | |
download | cpython-d1258451e6e41e1bc7d60796bb9a6569f0442ca3.zip cpython-d1258451e6e41e1bc7d60796bb9a6569f0442ca3.tar.gz cpython-d1258451e6e41e1bc7d60796bb9a6569f0442ca3.tar.bz2 |
Fix typo.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 4c06058..815b3a7 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1067,7 +1067,7 @@ are always available. They are listed here in alphabetical order. The second use case is to support cooperative multiple inheritance in a dynamic execution environment. This use case is unique to Python and is not found in statically compiled languages or languages that only support - single inheritance. This makes in possible to implement "diamond diagrams" + single inheritance. This makes it possible to implement "diamond diagrams" where multiple base classes implement the same method. Good design dictates that this method have the same calling signature in every case (because the order of calls is determined at runtime, because that order adapts |