summaryrefslogtreecommitdiff
path: root/lexer.c
diff options
context:
space:
mode:
Diffstat (limited to 'lexer.c')
-rw-r--r--lexer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexer.c b/lexer.c
index a541f4e..35a4f88 100644
--- a/lexer.c
+++ b/lexer.c
@@ -27,7 +27,7 @@ struct keyword {
static struct keyword keywords[] = {
{.s = "module", .t = TOK_MODULE },
{.s = "input" , .t = TOK_INPUT },
- {.s = "module", .t = TOK_EXPR },
+ {.s = "expr" , .t = TOK_EXPR },
{.s = "or" , .t = TOK_OR },
{.s = "and" , .t = TOK_AND },
{.s = "xor" , .t = TOK_XOR },