diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-05-23 17:07:08 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-05-23 17:07:08 +0200 |
| commit | 8b657379f335a511f35bb5ef551f8b8af49ddd96 (patch) | |
| tree | 86f253ce0df19493fdf03343281c0dba1af9df5d /core/text | |
| parent | 3d60b219c115d3792899d46b8baa9f760f5028cd (diff) | |
Typo fix
Diffstat (limited to 'core/text')
| -rw-r--r-- | core/text/scanner/scanner.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/text/scanner/scanner.odin b/core/text/scanner/scanner.odin index f32233396..96109f614 100644 --- a/core/text/scanner/scanner.odin +++ b/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 == '\\' { |