summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraldwinaldwin <aldwinaldwin@users.noreply.github.com>2019-07-04 00:58:45 (GMT)
committerBarry Warsaw <barry@python.org>2019-07-04 00:58:45 (GMT)
commitb607d992e76e485f20be3bfd6b311525123f936b (patch)
treea90faa112aa660822bf82a4507e7a1c22c722269
parent56ec4f1fdedd5b38deb06d94d51dd1a540262e90 (diff)
downloadcpython-b607d992e76e485f20be3bfd6b311525123f936b.zip
cpython-b607d992e76e485f20be3bfd6b311525123f936b.tar.gz
cpython-b607d992e76e485f20be3bfd6b311525123f936b.tar.bz2
bpo-37459: importlib docs improperly reference get_resource_loader() (#14568)
* bpo-37459: importlib docs improperly reference get_resource_loader()
-rw-r--r--Doc/library/importlib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
index 23831c7..df184b3 100644
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -500,7 +500,7 @@ ABC hierarchy::
packages or a module).
Loaders that wish to support resource reading are expected to
- provide a method called ``get_resource_loader(fullname)`` which
+ provide a method called ``get_resource_reader(fullname)`` which
returns an object implementing this ABC's interface. If the module
specified by fullname is not a package, this method should return
:const:`None`. An object compatible with this ABC should only be