summaryrefslogtreecommitdiffstats
path: root/Doc/library/importlib.rst
diff options
context:
space:
mode:
authorbusywhitespace <busywhitespace@tuta.io>2023-02-10 23:29:24 (GMT)
committerGitHub <noreply@github.com>2023-02-10 23:29:24 (GMT)
commit17143e2c30ae5e51945e04eeaec7ebb0e1f07fb5 (patch)
tree7e382abc82f06b904b3bb43ca641f2e07af5ee8f /Doc/library/importlib.rst
parent61f2be08661949e2f6dfc94143436297e60d47de (diff)
downloadcpython-17143e2c30ae5e51945e04eeaec7ebb0e1f07fb5.zip
cpython-17143e2c30ae5e51945e04eeaec7ebb0e1f07fb5.tar.gz
cpython-17143e2c30ae5e51945e04eeaec7ebb0e1f07fb5.tar.bz2
gh-101390: Fix docs for `imporlib.util.LazyLoader.factory` to properly call it a class method (GH-101391)
Diffstat (limited to 'Doc/library/importlib.rst')
-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 3fc1531..89efa64 100644
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -1387,7 +1387,7 @@ an :term:`importer`.
.. classmethod:: factory(loader)
- A static method which returns a callable that creates a lazy loader. This
+ A class method which returns a callable that creates a lazy loader. This
is meant to be used in situations where the loader is passed by class
instead of by instance.
::