about summary refs log tree commit diff
path: root/src/lex/token.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lex/token.rs')
-rw-r--r--src/lex/token.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lex/token.rs b/src/lex/token.rs
index 114884b..3694525 100644
--- a/src/lex/token.rs
+++ b/src/lex/token.rs
@@ -45,7 +45,7 @@ pub enum TokenVariant {
     Int(u32),
     Float(f32),
     Str(String),
-    Identifer(String),
+    Identifier(String),
 
     // Keywords
     KeywordFn,