summaryrefslogtreecommitdiff
path: root/example/ansic/clex.py
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2023-04-19 10:20:41 -0500
committerGitHub <noreply@github.com>2023-04-19 10:20:41 -0500
commit5c4dc94d4c6d059ec127ee1493c735963a5d2645 (patch)
treef5f63378032f4ec07d2c2f9fd39dd2fb889caab5 /example/ansic/clex.py
parent66369a66fa85981ab7a5e1dffd4ff7109bf4fa54 (diff)
parent0a9a61eb826a12e8f30559a8460605b3b02a61b5 (diff)
downloadply-master.tar.gz
Merge pull request #284 from uniontech-lilinjie/masterHEADmaster
fix typo
Diffstat (limited to 'example/ansic/clex.py')
-rw-r--r--example/ansic/clex.py4
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'\['