Fix typo in ast.rst (GH-27449)

Co-authored-by: HaeckelK <haeckelk.github@gmail.com>
This commit is contained in:
HaeckelK 2021-07-29 18:15:35 +01:00 committed by GitHub
parent 9101b39e67
commit 6b61d74a3b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1621,7 +1621,7 @@ Function and class definitions
A function definition. A function definition.
* ``name`` is a raw string of the function name. * ``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. * ``body`` is the list of nodes inside the function.
* ``decorator_list`` is the list of decorators to be applied, stored outermost * ``decorator_list`` is the list of decorators to be applied, stored outermost
first (i.e. the first in the list will be applied last). first (i.e. the first in the list will be applied last).