소스 검색

Documentation typo fix in tokenizer.

Karl Zylinski 1 년 전
부모
커밋
f9de8fdaba
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/tokenizer.cpp

+ 1 - 1
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') {