summaryrefslogtreecommitdiff
path: root/pycparser/c_lexer.py
diff options
context:
space:
mode:
authorKian Meng Ang <kianmeng.ang@gmail.com>2021-10-18 21:16:35 +0800
committerGitHub <noreply@github.com>2021-10-18 06:16:35 -0700
commita7b480ccbb4834e59858f5ffd04ab485da1e4b94 (patch)
treefec57dccfd4be6d900f62a9db612f9593bfb42d5 /pycparser/c_lexer.py
parent05dc0cfda95ea6ff0eb909254ddaaa869655edba (diff)
downloadpycparser-a7b480ccbb4834e59858f5ffd04ab485da1e4b94.tar.gz
Fix typos (#443)
* Fix typos * Revert changes in vendor module
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'\['