Jeroen van Rijn hai 3 meses
pai
achega
8b657379f3
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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 == '\\' {