mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-30 11:20:08 +00:00
changed error
This commit is contained in:
@@ -236,7 +236,7 @@ scan_raw_string :: proc(t: ^Tokenizer) -> string {
|
|||||||
for {
|
for {
|
||||||
ch := t.ch;
|
ch := t.ch;
|
||||||
if ch == utf8.RUNE_EOF {
|
if ch == utf8.RUNE_EOF {
|
||||||
error(t, offset, "string literal was not terminated");
|
error(t, offset, "raw string literal was not terminated");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
advance_rune(t);
|
advance_rune(t);
|
||||||
|
|||||||
Reference in New Issue
Block a user