diff options
author | Rajendra arora <contact.rajendraarora@gmail.com> | 2021-09-28 16:26:41 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-28 13:56:41 +0300 |
commit | 8b7427b5541c6541e71136d184d7710fafac4ede (patch) | |
tree | 24d5616606a5657a8cc36cc1cdd0d54967844c36 | |
parent | Fix typo in whatsnew: "ns" is 10^-9 secs and "us" is 10^-6 secs. (GH-28565) (diff) | |
download | cpython-8b7427b5541c6541e71136d184d7710fafac4ede.tar.gz cpython-8b7427b5541c6541e71136d184d7710fafac4ede.tar.bz2 cpython-8b7427b5541c6541e71136d184d7710fafac4ede.zip |
Fixed typo in "decclarations" (GH-28578)
-rwxr-xr-x | Parser/asdl_c.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py index 5f0b89bba44..37925a5783d 100755 --- a/Parser/asdl_c.py +++ b/Parser/asdl_c.py @@ -145,7 +145,7 @@ class MetadataVisitor(asdl.VisitorBase): # names where all the constructors # belonging to that type lack of any # fields. - # - identifiers: All identifiers used in the AST decclarations + # - identifiers: All identifiers used in the AST declarations # - singletons: List of all constructors that originates from # simple sums. # - types: List of all top level type names |