[Python-checkins] r69985 - python/branches/release30-maint/Doc/library/functions.rst

raymond.hettinger python-checkins at python.org
Thu Feb 26 01:23:37 CET 2009


Author: raymond.hettinger
Date: Thu Feb 26 01:23:35 2009
New Revision: 69985

Log:
Fix typo.

Modified:
   python/branches/release30-maint/Doc/library/functions.rst

Modified: python/branches/release30-maint/Doc/library/functions.rst
==============================================================================
--- python/branches/release30-maint/Doc/library/functions.rst	(original)
+++ python/branches/release30-maint/Doc/library/functions.rst	Thu Feb 26 01:23:35 2009
@@ -1061,7 +1061,7 @@
    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


More information about the Python-checkins mailing list