summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-11-26 18:22:13 (GMT)
committerGitHub <noreply@github.com>2022-11-26 18:22:13 (GMT)
commit3d82b7ed8daa9c30c54257042bbef30f9b195d52 (patch)
tree2aa3173dbde1e07a422d98e5198cc786083e84dd
parent289411d8eff6a646a7746cfb87ddf95ff83cfbdc (diff)
downloadcpython-3d82b7ed8daa9c30c54257042bbef30f9b195d52.zip
cpython-3d82b7ed8daa9c30c54257042bbef30f9b195d52.tar.gz
cpython-3d82b7ed8daa9c30c54257042bbef30f9b195d52.tar.bz2
[3.10] gh-99795: Fix typo in importlib.resources.abc (GH-99796) (GH-99800)
Changing TraversableReader to TraversableResources at one place of the documentation. See GH-99795 for more details.. (cherry picked from commit 5f8898216e7b67b7de6b0b1aad9277e88bcebfdb) Co-authored-by: busywhitespace <busywhitespace@tuta.io> Co-authored-by: busywhitespace <busywhitespace@tuta.io>
-rw-r--r--Doc/library/importlib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
index 1addba3..f1cf9ee 100644
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -862,7 +862,7 @@ ABC hierarchy::
An abstract base class for resource readers capable of serving
the ``files`` interface. Subclasses ResourceReader and provides
concrete implementations of the ResourceReader's abstract
- methods. Therefore, any loader supplying TraversableReader
+ methods. Therefore, any loader supplying TraversableResources
also supplies ResourceReader.
Loaders that wish to support resource reading are expected to