소스 검색

changed error

DanielGavin 4 년 전
부모
커밋
02bbac0903
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      core/odin/tokenizer/tokenizer.odin

+ 1 - 1
core/odin/tokenizer/tokenizer.odin

@@ -236,7 +236,7 @@ scan_raw_string :: proc(t: ^Tokenizer) -> string {
 	for {
 		ch := t.ch;
 		if ch == utf8.RUNE_EOF {
-			error(t, offset, "string literal was not terminated");
+			error(t, offset, "raw string literal was not terminated");
 			break;
 		}
 		advance_rune(t);