summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-10-18 14:54:46 -0400
committerJason R. Coombs <jaraco@jaraco.com>2021-10-18 14:54:46 -0400
commit2da343f5b6b5b403f697c3ba5f9f4fe285b6f725 (patch)
treef8558ef2daadafd2f0e3b0f985063e8d2d67f59a
parent51c208fa55e4e7573dbfeb631076f20e344e5deb (diff)
downloadcpython-git-2da343f5b6b5b403f697c3ba5f9f4fe285b6f725.tar.gz
Apply changes from importlib_resources@329ae9d5f2c.
-rw-r--r--Lib/importlib/_adapters.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/importlib/_adapters.py b/Lib/importlib/_adapters.py
index 9907b148b3..ea363d86a5 100644
--- a/Lib/importlib/_adapters.py
+++ b/Lib/importlib/_adapters.py
@@ -41,8 +41,8 @@ def _io_wrapper(file, mode='r', *args, **kwargs):
class CompatibilityFiles:
"""
- Adapter for an existing or non-existant resource reader
- to provide a compability .files().
+ Adapter for an existing or non-existent resource reader
+ to provide a compatibility .files().
"""
class SpecPath(abc.Traversable):
@@ -83,7 +83,7 @@ class CompatibilityFiles:
class ChildPath(abc.Traversable):
"""
Path tied to a resource reader child.
- Can be read but doesn't expose any meaningfull children.
+ Can be read but doesn't expose any meaningful children.
"""
def __init__(self, reader, name):