diff options
Diffstat (limited to 'example/ansic')
-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'\[' |