summaryrefslogtreecommitdiff
path: root/example/ctokens/ctokens.py
diff options
context:
space:
mode:
Diffstat (limited to 'example/ctokens/ctokens.py')
-rw-r--r--example/ctokens/ctokens.py4
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'\['