aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/importlib/resources/_common.py
diff options
context:
space:
mode:
authorabstractee <48130041+abstractee@users.noreply.github.com>2024-09-03 01:20:40 +0100
committerGitHub <noreply@github.com>2024-09-03 02:20:40 +0200
commit1f4a49ea53516e7ff177beedc09a1e4439b3be1f (patch)
treec6aebbf8b1875231a21c667e16d3168111e672bd /Lib/importlib/resources/_common.py
parent33b790978d8b817a66a4a117a8c38a857b6103f0 (diff)
downloadcpython-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.py2
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)