From 05fa948cde970e03503d4234d645ae42a2b3d066 Mon Sep 17 00:00:00 2001 From: busywhitespace Date: Sat, 28 Jan 2023 14:04:03 +0100 Subject: [PATCH] Correct the documentation of imporlib.util.LazyLoader.factory --- Doc/library/importlib.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 3fc1531c0cdf19..89efa64c6b5203 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. ::