]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix comment typo in importlib (#118567)
authorwim glenn <jump@wimglenn.com>
Sat, 4 May 2024 13:46:32 +0000 (08:46 -0500)
committerGitHub <noreply@github.com>
Sat, 4 May 2024 13:46:32 +0000 (14:46 +0100)
Lib/importlib/_bootstrap.py

index 6d6292f95592534db66c24c43c33488c8e96b274..de5651f0a7fc36121574e925ac3bfc8496ec97b9 100644 (file)
@@ -1134,7 +1134,7 @@ class FrozenImporter:
         # part of the importer), instead of here (the finder part).
         # The loader is the usual place to get the data that will
         # be loaded into the module.  (For example, see _LoaderBasics
-        # in _bootstra_external.py.)  Most importantly, this importer
+        # in _bootstrap_external.py.)  Most importantly, this importer
         # is simpler if we wait to get the data.
         # However, getting as much data in the finder as possible
         # to later load the module is okay, and sometimes important.