summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-02-26 00:05:24 +0000
committerRaymond Hettinger <python@rcn.com>2009-02-26 00:05:24 +0000
commited955f108fd61df74b5ea2414c0ebbfad524b622 (patch)
tree28d520d200da143496c11f55097d9107fd26b0d2
parenta665853bab7ac309f224fa1e9b96d81aa9227838 (diff)
downloadcpython-git-ed955f108fd61df74b5ea2414c0ebbfad524b622.tar.gz
Fix typo.
-rw-r--r--Doc/library/functions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index e0bc8d7483..bad9848602 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -1218,7 +1218,7 @@ 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