summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2019-11-25 11:16:39 (GMT)
committerGitHub <noreply@github.com>2019-11-25 11:16:39 (GMT)
commite11f25dbd85709ed370e83348da07be03e9b3d7a (patch)
tree5e0ed35758f82c2eb700f4e16309bc770ce69cc7
parent27fc3b6f3fc49a36d3f962caac5c5495696d12ed (diff)
downloadcpython-e11f25dbd85709ed370e83348da07be03e9b3d7a.zip
cpython-e11f25dbd85709ed370e83348da07be03e9b3d7a.tar.gz
cpython-e11f25dbd85709ed370e83348da07be03e9b3d7a.tar.bz2
Fix typo in Doc/whatsnew/3.9.rst (GH-17372)
-rw-r--r--Doc/whatsnew/3.9.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index 9af5259..5c669a0 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -121,7 +121,7 @@ Added the *indent* option to :func:`~ast.dump` which allows it to produce a
multiline indented output.
(Contributed by Serhiy Storchaka in :issue:`37995`.)
-Added the :func:`ast.unparse` as a function in the :mod:`ast` module that can
+Added :func:`ast.unparse` as a function in the :mod:`ast` module that can
be used to unparse an :class:`ast.AST` object and produce a string with code
that would produce an equivalent :class:`ast.AST` object when parsed.
(Contributed by Pablo Galindo and Batuhan Taskaya in :issue:`38870`.)