From d8d01ff71c72a789506f4388fadc74e728b89a78 Mon Sep 17 00:00:00 2001 From: HaeckelK Date: Thu, 29 Jul 2021 17:45:12 +0100 Subject: [PATCH] Fix typo in ast.rst --- 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 c7074c40f280c6..b3646ef88ccbe1 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).