aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-11-26 10:12:23 -0800
committerGitHub <noreply@github.com>2022-11-26 10:12:23 -0800
commitfe9957241ad66fd246640b3ff785fe847ecdb766 (patch)
treee51e22e546531c7c8754743eb633dff4cdc74d4f
parentgh-97966: Restore prior expectation that uname_result._fields and ._asdict wo... (diff)
downloadcpython-fe9957241ad66fd246640b3ff785fe847ecdb766.tar.gz
cpython-fe9957241ad66fd246640b3ff785fe847ecdb766.tar.bz2
cpython-fe9957241ad66fd246640b3ff785fe847ecdb766.zip
gh-99795: Fix typo in importlib.resources.abc (GH-99796)
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>
-rw-r--r--Doc/library/importlib.resources.abc.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/importlib.resources.abc.rst b/Doc/library/importlib.resources.abc.rst
index d281ac0322..a028537f3c 100644
--- a/Doc/library/importlib.resources.abc.rst
+++ b/Doc/library/importlib.resources.abc.rst
@@ -139,7 +139,7 @@
:class:`importlib.resources.abc.ResourceReader` and provides
concrete implementations of the :class:`importlib.resources.abc.ResourceReader`'s
abstract methods. Therefore, any loader supplying
- :class:`importlib.abc.TraversableReader` also supplies ResourceReader.
+ :class:`importlib.abc.TraversableResources` also supplies ResourceReader.
Loaders that wish to support resource reading are expected to
implement this interface.