summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-07-29 17:38:28 (GMT)
committerGitHub <noreply@github.com>2021-07-29 17:38:28 (GMT)
commit12562790474dfe80bfc5b63ce440a80ccf6062cb (patch)
tree34fcbd7c7657c979a9de253937142a1c99df8445 /Doc/library
parenta438b37d9f4e571f139c990f6af65867b0c54a9a (diff)
downloadcpython-12562790474dfe80bfc5b63ce440a80ccf6062cb.zip
cpython-12562790474dfe80bfc5b63ce440a80ccf6062cb.tar.gz
cpython-12562790474dfe80bfc5b63ce440a80ccf6062cb.tar.bz2
Fix typo in ast.rst (GH-27449) (GH-27454)
Co-authored-by: HaeckelK <haeckelk.github@gmail.com> (cherry picked from commit 6b61d74a3bab43a44fa47b1facd1bec3d74e12b1) Co-authored-by: HaeckelK <51128712+HaeckelK@users.noreply.github.com>
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/ast.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst
index c7074c4..b3646ef 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).