]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-99795: Fix typo in importlib.resources.abc (GH-99796)
authorbusywhitespace <busywhitespace@tuta.io>
Sat, 26 Nov 2022 18:01:08 +0000 (19:01 +0100)
committerGitHub <noreply@github.com>
Sat, 26 Nov 2022 18:01:08 +0000 (10:01 -0800)
Changing TraversableReader to TraversableResources at one place of the documentation.

See #99795 for more details.

Doc/library/importlib.resources.abc.rst

index 57fffe0d905cbe7514e8145dd88f2913553de47e..7747e89a833c02a678fbe38e660573656bde06c2 100644 (file)
     :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.