diff options
author | abstractee <48130041+abstractee@users.noreply.github.com> | 2024-09-03 01:20:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-03 02:20:40 +0200 |
commit | 1f4a49ea53516e7ff177beedc09a1e4439b3be1f (patch) | |
tree | c6aebbf8b1875231a21c667e16d3168111e672bd /Lib/importlib/resources/_common.py | |
parent | 33b790978d8b817a66a4a117a8c38a857b6103f0 (diff) | |
download | cpython-1f4a49ea53516e7ff177beedc09a1e4439b3be1f.tar.gz cpython-1f4a49ea53516e7ff177beedc09a1e4439b3be1f.zip |
Fix typos in warnings, docstrings, comments and text files (#123597)
Diffstat (limited to 'Lib/importlib/resources/_common.py')
-rw-r--r-- | Lib/importlib/resources/_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/resources/_common.py b/Lib/importlib/resources/_common.py index ca5b06743b4..d5381fb80d8 100644 --- a/Lib/importlib/resources/_common.py +++ b/Lib/importlib/resources/_common.py @@ -182,7 +182,7 @@ def _(path): @contextlib.contextmanager def _temp_path(dir: tempfile.TemporaryDirectory): """ - Wrap tempfile.TemporyDirectory to return a pathlib object. + Wrap tempfile.TemporaryDirectory to return a pathlib object. """ with dir as result: yield pathlib.Path(result) |