summaryrefslogtreecommitdiff
path: root/oryxc/src/lexer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'oryxc/src/lexer.rs')
-rw-r--r--oryxc/src/lexer.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/oryxc/src/lexer.rs b/oryxc/src/lexer.rs
index 2f82e47..ace0a83 100644
--- a/oryxc/src/lexer.rs
+++ b/oryxc/src/lexer.rs
@@ -124,7 +124,6 @@ impl<'a> LexerContext<'a> {
static KEYWORDS: phf::Map<&'static str, TokenType> = phf::phf_map! {
"def" => TokenType::KeywordDef,
"func" => TokenType::KeywordFunc,
- "module" => TokenType::KeywordModule,
"return" => TokenType::KeywordReturn,
};