summaryrefslogtreecommitdiff
path: root/Doc/library/importlib.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-03-13 19:04:40 +0000
committerGeorg Brandl <georg@python.org>2009-03-13 19:04:40 +0000
commit5a63ae88bf1cd3debea5ceb3388640310d5e0b21 (patch)
tree3a147f9b06916f962b8b7c9f2cd1577f3c0c466e /Doc/library/importlib.rst
parent45343feb0cbec44e4f1d1e7bf6a06cc434b2358f (diff)
downloadcpython-5a63ae88bf1cd3debea5ceb3388640310d5e0b21.tar.gz
#5486: typos.
Diffstat (limited to 'Doc/library/importlib.rst')
-rw-r--r--Doc/library/importlib.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
index 4610b575dd..3b2a288fa2 100644
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -78,9 +78,9 @@ Functions
The :func:`import_module` function acts as a simplifying wrapper around
:func:`__import__`. This means all semantics of the function are derived
- from :func:`__import__`, including requiring the package where an import is
- occuring from to already be imported (i.e., *package* must already be
- imported).
+ from :func:`__import__`, including requiring the package from which an
+ import is occurring to have been previously imported (i.e., *package*
+ must already be imported).
:mod:`importlib.abc` -- Abstract base classes related to import
---------------------------------------------------------------