diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-05 21:48:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-05 21:48:44 (GMT) |
commit | 241bda785a092a272d7e0f6a4e20bd250c389cfe (patch) | |
tree | d1ec44882a46c83d3a91d6ce5e312954cffab269 /Doc/reference | |
parent | 4c8d543823dde5a30615da61727837a48f7ab847 (diff) | |
download | cpython-241bda785a092a272d7e0f6a4e20bd250c389cfe.zip cpython-241bda785a092a272d7e0f6a4e20bd250c389cfe.tar.gz cpython-241bda785a092a272d7e0f6a4e20bd250c389cfe.tar.bz2 |
[doc] Fix typos found using codespell (GH-28744)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/import.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst index 39fcba0..69e2a94 100644 --- a/Doc/reference/import.rst +++ b/Doc/reference/import.rst @@ -605,7 +605,7 @@ the module. ``__file__`` is optional (if set, value must be a string). It indicates the pathname of the file from which the module was loaded (if - loaded from a file), or the pathname of the shared libray file + loaded from a file), or the pathname of the shared library file for extension modules loaded dynamically from a shared library. It might be missing for certain types of modules, such as C modules that are statically linked into the interpreter, and the |