summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.7.rst
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-08-14 10:20:05 (GMT)
committerGitHub <noreply@github.com>2020-08-14 10:20:05 (GMT)
commitbb0b08540cc93e56f3f1bde1b39ce086d9e35fe1 (patch)
tree07b1760928dc17078a061fe7424f0f9303addb1c /Doc/whatsnew/3.7.rst
parent87d8287865e5c9f137f6b5cf8c34c2c509eb5e9d (diff)
downloadcpython-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/whatsnew/3.7.rst')
-rw-r--r--Doc/whatsnew/3.7.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index 279bbc6..25b1e1e 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -636,7 +636,7 @@ The :mod:`asyncio` module has received many new features, usability and
:ref:`performance improvements <whatsnew37-asyncio-perf>`. Notable changes
include:
-* The new :term:`provisional <provisional api>` :func:`asyncio.run` function can
+* The new :term:`provisional <provisional API>` :func:`asyncio.run` function can
be used to run a coroutine from synchronous code by automatically creating and
destroying the event loop.
(Contributed by Yury Selivanov in :issue:`32314`.)