aboutsummaryrefslogtreecommitdiff
path: root/src/tokenizer.cpp
diff options
context:
space:
mode:
authorKarl Zylinski <karl@zylinski.se>2024-09-09 21:51:29 +0200
committerKarl Zylinski <karl@zylinski.se>2024-09-09 21:51:34 +0200
commitf9de8fdaba12746b9c458e916ba6bb9d7c5b7aa7 (patch)
tree6df86e35758c63d107bd9d4cc7d67fc63570e01b /src/tokenizer.cpp
parent580f0599cde713f5e1c7495174821abe6dc4a2a1 (diff)
Documentation typo fix in tokenizer.
Diffstat (limited to 'src/tokenizer.cpp')
-rw-r--r--src/tokenizer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tokenizer.cpp b/src/tokenizer.cpp
index e9bad390e..53f6135d0 100644
--- a/src/tokenizer.cpp
+++ b/src/tokenizer.cpp
@@ -943,7 +943,7 @@ gb_internal void tokenizer_get_token(Tokenizer *t, Token *token, int repeat=0) {
} else if (t->curr_rune == '+') {
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`.
while (t->curr_rune != GB_RUNE_EOF) {
if (t->curr_rune == '\n') {