summaryrefslogtreecommitdiffstats
path: root/Doc/library/ast.rst
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2021-10-06 13:57:39 (GMT)
committerGitHub <noreply@github.com>2021-10-06 13:57:39 (GMT)
commitedef03aaa8993901e63e901448ec2be8b2801ca7 (patch)
treee236b1ee839b9e3626fd4b616bf8ab01f551c2b6 /Doc/library/ast.rst
parentd747f5e805fa1c33768d9c22605e6324a35b3709 (diff)
downloadcpython-edef03aaa8993901e63e901448ec2be8b2801ca7.zip
cpython-edef03aaa8993901e63e901448ec2be8b2801ca7.tar.gz
cpython-edef03aaa8993901e63e901448ec2be8b2801ca7.tar.bz2
[3.9] [doc] Fix typos found using codespell (GH-28744) (GH-28759)
Diffstat (limited to 'Doc/library/ast.rst')
-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 39a0841..149179d 100644
--- a/Doc/library/ast.rst
+++ b/Doc/library/ast.rst
@@ -1552,7 +1552,7 @@ and classes for traversing abstract syntax trees:
If source contains a null character ('\0'), :exc:`ValueError` is raised.
.. warning::
- Note that succesfully parsing souce code into an AST object doesn't
+ Note that successfully parsing source code into an AST object doesn't
guarantee that the source code provided is valid Python code that can
be executed as the compilation step can raise further :exc:`SyntaxError`
exceptions. For instance, the source ``return 42`` generates a valid