diff options
Diffstat (limited to 'example/ctokens')
-rw-r--r-- | example/ctokens/ctokens.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/ctokens/ctokens.py b/example/ctokens/ctokens.py index b265e59..195efa7 100644 --- a/example/ctokens/ctokens.py +++ b/example/ctokens/ctokens.py @@ -30,7 +30,7 @@ tokens = [ # Ternary operator (?) 'TERNARY', - # Delimeters ( ) [ ] { } , . ; : + # Delimiters ( ) [ ] { } , . ; : 'LPAREN', 'RPAREN', 'LBRACKET', 'RBRACKET', 'LBRACE', 'RBRACE', @@ -86,7 +86,7 @@ t_ARROW = r'->' # ? t_TERNARY = r'\?' -# Delimeters +# Delimiters t_LPAREN = r'\(' t_RPAREN = r'\)' t_LBRACKET = r'\[' |