diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-06 13:57:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 13:57:39 (GMT) |
commit | edef03aaa8993901e63e901448ec2be8b2801ca7 (patch) | |
tree | e236b1ee839b9e3626fd4b616bf8ab01f551c2b6 /Doc/library/ast.rst | |
parent | d747f5e805fa1c33768d9c22605e6324a35b3709 (diff) | |
download | cpython-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.rst | 2 |
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 |