mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 23:28:48 +00:00
Documentation typo fix in tokenizer.
This commit is contained in:
+1
-1
@@ -943,7 +943,7 @@ gb_internal void tokenizer_get_token(Tokenizer *t, Token *token, int repeat=0) {
|
|||||||
} else if (t->curr_rune == '+') {
|
} else if (t->curr_rune == '+') {
|
||||||
token->kind = Token_FileTag;
|
token->kind = Token_FileTag;
|
||||||
|
|
||||||
// Skip the line or until it ends or until we hit was is probably a comment.
|
// Skip until end of line or until we hit what is probably a comment.
|
||||||
// The parsing of tags happens in `parse_file`.
|
// The parsing of tags happens in `parse_file`.
|
||||||
while (t->curr_rune != GB_RUNE_EOF) {
|
while (t->curr_rune != GB_RUNE_EOF) {
|
||||||
if (t->curr_rune == '\n') {
|
if (t->curr_rune == '\n') {
|
||||||
|
|||||||
Reference in New Issue
Block a user