[Python-checkins] Fix typo in ast.rst (GH-27449) (GH-27455)

ambv webhook-mailer at python.org
Thu Jul 29 13:41:56 EDT 2021


https://github.com/python/cpython/commit/c2c322b3542aecf79e36849d737513cd0da84f22
commit: c2c322b3542aecf79e36849d737513cd0da84f22
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: ambv <lukasz at langa.pl>
date: 2021-07-29T19:41:51+02:00
summary:

Fix typo in ast.rst (GH-27449) (GH-27455)

Co-authored-by: HaeckelK <haeckelk.github at gmail.com>
(cherry picked from commit 6b61d74a3bab43a44fa47b1facd1bec3d74e12b1)

files:
M Doc/library/ast.rst

diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst
index 9328faf53839f..284168d9f8119 100644
--- a/Doc/library/ast.rst
+++ b/Doc/library/ast.rst
@@ -1253,7 +1253,7 @@ Function and class definitions
    A function definition.
 
    * ``name`` is a raw string of the function name.
-   * ``args`` is a :class:`arguments` node.
+   * ``args`` is an :class:`arguments` node.
    * ``body`` is the list of nodes inside the function.
    * ``decorator_list`` is the list of decorators to be applied, stored outermost
      first (i.e. the first in the list will be applied last).



More information about the Python-checkins mailing list