]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in ast.rst (GH-27449) (GH-27454)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 29 Jul 2021 17:38:28 +0000 (10:38 -0700)
committerGitHub <noreply@github.com>
Thu, 29 Jul 2021 17:38:28 +0000 (19:38 +0200)
Co-authored-by: HaeckelK <haeckelk.github@gmail.com>
(cherry picked from commit 6b61d74a3bab43a44fa47b1facd1bec3d74e12b1)

Co-authored-by: HaeckelK <51128712+HaeckelK@users.noreply.github.com>
Doc/library/ast.rst

index c7074c40f280c6827ac944b6efb90b1b3fa572d2..b3646ef88ccbe1739f03b113819e68225833d179 100644 (file)
@@ -1621,7 +1621,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).