Jeroen van Rijn 3 months ago
parent
commit
8b657379f3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/text/scanner/scanner.odin

+ 1 - 1
core/text/scanner/scanner.odin

@@ -449,7 +449,7 @@ scan_string :: proc(s: ^Scanner, quote: rune) -> (n: int) {
 	ch := advance(s)
 	for ch != quote {
 		if ch == '\n' || ch < 0 {
-			error(s, "literal no terminated")
+			error(s, "literal not terminated")
 			return
 		}
 		if ch == '\\' {