mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-02 19:22:33 +00:00
Fix typo in tokenizer (no actual bug)
This commit is contained in:
@@ -746,11 +746,10 @@ exponent:
|
||||
}
|
||||
|
||||
switch (t->curr_rune) {
|
||||
case 'i':
|
||||
case 'j':
|
||||
case 'k':
|
||||
case 'i': case 'j': case 'k':
|
||||
token.kind = Token_Imag;
|
||||
advance_to_next_rune(t);
|
||||
break;
|
||||
}
|
||||
|
||||
end:
|
||||
|
||||
Reference in New Issue
Block a user