Skip to content

Commit 17a2cc1

Browse files
authored
Docs: fix typos in documentation (GH-118815)
1 parent 46c8081 commit 17a2cc1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Doc/library/importlib.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1252,7 +1252,7 @@ find and load modules.
12521252
be only a single binary per framework, and there can be no executable binary
12531253
material outside the Frameworks folder.
12541254

1255-
To accomodate this requirement, when running on iOS, extension module
1255+
To accommodate this requirement, when running on iOS, extension module
12561256
binaries are *not* packaged as ``.so`` files on ``sys.path``, but as
12571257
individual standalone frameworks. To discover those frameworks, this loader
12581258
is be registered against the ``.fwork`` file extension, with a ``.fwork``
@@ -1279,7 +1279,7 @@ find and load modules.
12791279

12801280
When a module is loaded with this loader, the ``__file__`` for the module
12811281
will report as the location of the ``.fwork`` file. This allows code to use
1282-
the ``__file__`` of a module as an anchor for file system traveral.
1282+
the ``__file__`` of a module as an anchor for file system traversal.
12831283
However, the spec origin will reference the location of the *actual* binary
12841284
in the ``.framework`` folder.
12851285

Doc/library/logging.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1204,7 +1204,7 @@ functions.
12041204
most programs will want to carefully and explicitly control the logging
12051205
configuration, and should therefore prefer creating a module-level logger and
12061206
calling :meth:`Logger.debug` (or other level-specific methods) on it, as
1207-
described at the beginnning of this documentation.
1207+
described at the beginning of this documentation.
12081208

12091209

12101210
.. function:: info(msg, *args, **kwargs)

0 commit comments

Comments
 (0)