diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-10-21 04:24:13 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-10-21 04:24:13 (GMT) |
commit | 1f67e80564fc47312b39b84109a2457a6584ffa5 (patch) | |
tree | 5bd35c9df821cbeb844303bd3853c8bac4798eb2 | |
parent | b24d3cf769e242c14facc99a27798f2e44bde5c6 (diff) | |
download | cpython-1f67e80564fc47312b39b84109a2457a6584ffa5.zip cpython-1f67e80564fc47312b39b84109a2457a6584ffa5.tar.gz cpython-1f67e80564fc47312b39b84109a2457a6584ffa5.tar.bz2 |
Fix typo.
-rw-r--r-- | Doc/library/importlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 04097f0..681f1d9 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -162,7 +162,7 @@ ABC hierarchy:: An abstract method for finding a :term:`loader` for the specified module. If this is a top-level import, *path* will be ``None``. - Otheriwse, this is a search for a subpackage or module and *path* + Otherwise, this is a search for a subpackage or module and *path* will be the value of :attr:`__path__` from the parent package. If a loader cannot be found, ``None`` is returned. |