diff options
author | Victor Stinner <vstinner@python.org> | 2020-08-14 10:20:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 10:20:05 (GMT) |
commit | bb0b08540cc93e56f3f1bde1b39ce086d9e35fe1 (patch) | |
tree | 07b1760928dc17078a061fe7424f0f9303addb1c /Doc/library/pkgutil.rst | |
parent | 87d8287865e5c9f137f6b5cf8c34c2c509eb5e9d (diff) | |
download | cpython-bb0b08540cc93e56f3f1bde1b39ce086d9e35fe1.zip cpython-bb0b08540cc93e56f3f1bde1b39ce086d9e35fe1.tar.gz cpython-bb0b08540cc93e56f3f1bde1b39ce086d9e35fe1.tar.bz2 |
bpo-40204: Fix reference to terms in the doc (GH-21865)
Sphinx 3 requires to refer to terms with the exact case.
For example, fix the Sphinx 3 warning:
Doc/library/pkgutil.rst:71: WARNING: term Loader not found in case
sensitive match.made a reference to loader instead.
Diffstat (limited to 'Doc/library/pkgutil.rst')
-rw-r--r-- | Doc/library/pkgutil.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pkgutil.rst b/Doc/library/pkgutil.rst index 2066cbb..3b17b9a 100644 --- a/Doc/library/pkgutil.rst +++ b/Doc/library/pkgutil.rst @@ -68,7 +68,7 @@ support. .. class:: ImpLoader(fullname, file, filename, etc) - :term:`Loader` that wraps Python's "classic" import algorithm. + :term:`Loader <loader>` that wraps Python's "classic" import algorithm. .. deprecated:: 3.3 This emulation is no longer needed, as the standard import mechanism |