diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-10-18 14:54:46 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-10-18 14:54:46 -0400 |
commit | 2da343f5b6b5b403f697c3ba5f9f4fe285b6f725 (patch) | |
tree | f8558ef2daadafd2f0e3b0f985063e8d2d67f59a | |
parent | 51c208fa55e4e7573dbfeb631076f20e344e5deb (diff) | |
download | cpython-git-2da343f5b6b5b403f697c3ba5f9f4fe285b6f725.tar.gz |
Apply changes from importlib_resources@329ae9d5f2c.
-rw-r--r-- | Lib/importlib/_adapters.py | 6 |
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): |