diff options
author | Brett Cannon <brett@python.org> | 2013-06-16 19:06:55 -0400 |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-06-16 19:06:55 -0400 |
commit | 1d75382e81cb6f0cb22249e355cf0404102268ab (patch) | |
tree | 2da4be753c45bcbc16ec18d249f12877317cc5d1 /Doc | |
parent | 27bbfdbc4c85011b2bd7f21d3fe3b5e8c2d8b725 (diff) | |
download | cpython-git-1d75382e81cb6f0cb22249e355cf0404102268ab.tar.gz |
Fix a misnaming of a method and an argument
Diffstat (limited to 'Doc')
-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 6f1899f3f5..51a0a28342 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -714,7 +714,7 @@ find and load modules. The path the finder will search in. - .. method:: find_module(fullname) + .. method:: find_loader(fullname) Attempt to find the loader to handle *fullname* within :attr:`path`. |