From a5e43c2081b3e7eca5698a7bf9fe457f9d871631 Mon Sep 17 00:00:00 2001 From: HaeckelK <51128712+HaeckelK@users.noreply.github.com> Date: Thu, 29 Jul 2021 18:15:35 +0100 Subject: [PATCH] Fix typo in ast.rst (GH-27449) Co-authored-by: HaeckelK (cherry picked from commit 6b61d74a3bab43a44fa47b1facd1bec3d74e12b1) Co-authored-by: HaeckelK <51128712+HaeckelK@users.noreply.github.com> --- Doc/library/ast.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst index c7074c40f280c68..b3646ef88ccbe17 100644 --- a/Doc/library/ast.rst +++ b/Doc/library/ast.rst @@ -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).