diff options
author | David Beazley <dave@dabeaz.com> | 2023-04-19 10:20:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-19 10:20:41 -0500 |
commit | 5c4dc94d4c6d059ec127ee1493c735963a5d2645 (patch) | |
tree | f5f63378032f4ec07d2c2f9fd39dd2fb889caab5 /example/ansic/clex.py | |
parent | 66369a66fa85981ab7a5e1dffd4ff7109bf4fa54 (diff) | |
parent | 0a9a61eb826a12e8f30559a8460605b3b02a61b5 (diff) | |
download | ply-master.tar.gz |
fix typo
Diffstat (limited to 'example/ansic/clex.py')
-rw-r--r-- | example/ansic/clex.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/ansic/clex.py b/example/ansic/clex.py index 5d99416..bf917a7 100644 --- a/example/ansic/clex.py +++ b/example/ansic/clex.py @@ -38,7 +38,7 @@ tokens = reserved + ( # Conditional operator (?) 'CONDOP', - # Delimeters ( ) [ ] { } , . ; : + # Delimiters ( ) [ ] { } , . ; : 'LPAREN', 'RPAREN', 'LBRACKET', 'RBRACKET', 'LBRACE', 'RBRACE', @@ -104,7 +104,7 @@ t_ARROW = r'->' # ? t_CONDOP = r'\?' -# Delimeters +# Delimiters t_LPAREN = r'\(' t_RPAREN = r'\)' t_LBRACKET = r'\[' |