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

Doc/library/ast.rst

index 9328faf53839f9c710a97b3548f48f0fac74c633..284168d9f81196da61c962325a91e49f7d53380d 100644 (file)
@@ -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).