From 49ff523aad4d0373e9203698edc79f6fe0130935 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Sun, 26 Oct 2025 18:51:00 -0700 Subject: Fix typo --- lexer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lexer.go b/lexer.go index ee72b33..4fc6ca4 100644 --- a/lexer.go +++ b/lexer.go @@ -63,7 +63,7 @@ func (l *lexer) tokens() { case '\'': str := stringRE.Find(l.data[l.i+1:]) if str == nil { - l.error("invaild string") + l.error("invalid string") return } if !l.yield(1 + len(str)) { -- cgit v1.3.1