diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2021-03-30 12:40:40 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2021-03-30 12:40:40 +0200 |
| commit | 02bbac09030ae34ede0853cc8ecdba4e4d995be9 (patch) | |
| tree | dba0e4f3edabd89faf2066d2daa7e29cf7a4cdea | |
| parent | b8658547e088f6ee40bf0869dca256be08c7f8ef (diff) | |
changed error
| -rw-r--r-- | core/odin/tokenizer/tokenizer.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/odin/tokenizer/tokenizer.odin b/core/odin/tokenizer/tokenizer.odin index 6721a5e8a..e00dccde9 100644 --- a/core/odin/tokenizer/tokenizer.odin +++ b/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); |