mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
Typo fix
This commit is contained in:
@@ -449,7 +449,7 @@ scan_string :: proc(s: ^Scanner, quote: rune) -> (n: int) {
|
|||||||
ch := advance(s)
|
ch := advance(s)
|
||||||
for ch != quote {
|
for ch != quote {
|
||||||
if ch == '\n' || ch < 0 {
|
if ch == '\n' || ch < 0 {
|
||||||
error(s, "literal no terminated")
|
error(s, "literal not terminated")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if ch == '\\' {
|
if ch == '\\' {
|
||||||
|
|||||||
Reference in New Issue
Block a user