summaryrefslogtreecommitdiff
path: root/pycparser/c_lexer.py
diff options
context:
space:
mode:
Diffstat (limited to 'pycparser/c_lexer.py')
-rw-r--r--pycparser/c_lexer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pycparser/c_lexer.py b/pycparser/c_lexer.py
index 2990170..d68d8eb 100644
--- a/pycparser/c_lexer.py
+++ b/pycparser/c_lexer.py
@@ -170,7 +170,7 @@ class CLexer(object):
# Conditional operator (?)
'CONDOP',
- # Delimeters
+ # Delimiters
'LPAREN', 'RPAREN', # ( )
'LBRACKET', 'RBRACKET', # [ ]
'LBRACE', 'RBRACE', # { }
@@ -414,7 +414,7 @@ class CLexer(object):
# ?
t_CONDOP = r'\?'
- # Delimeters
+ # Delimiters
t_LPAREN = r'\('
t_RPAREN = r'\)'
t_LBRACKET = r'\['