From: HaeckelK <51128712+HaeckelK@users.noreply.github.com> Date: Thu, 29 Jul 2021 17:15:35 +0000 (+0100) Subject: Fix typo in ast.rst (GH-27449) X-Git-Tag: v3.11.0a1~526 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6b61d74a3bab43a44fa47b1facd1bec3d74e12b1;p=thirdparty%2FPython%2Fcpython.git Fix typo in ast.rst (GH-27449) Co-authored-by: HaeckelK --- diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst index c7074c40f280..b3646ef88ccb 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).