From a2be92d182fc04da33b365bf47c17fe0f4808aea Mon Sep 17 00:00:00 2001 From: Parker Brown <17183625+parkerbxyz@users.noreply.github.com> Date: Tue, 21 Oct 2025 16:26:18 -0700 Subject: [PATCH] Fix typo in `hasQuotePrefix` return variable (#251) Corrected the spelling of the return variable from 'isQuored' to 'isQuoted' in the hasQuotePrefix function. --- parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser.go b/parser.go index a180d7d..6655318 100644 --- a/parser.go +++ b/parser.go @@ -212,7 +212,7 @@ func indexOfNonSpaceChar(src []byte) int { } // hasQuotePrefix reports whether charset starts with single or double quote and returns quote character -func hasQuotePrefix(src []byte) (prefix byte, isQuored bool) { +func hasQuotePrefix(src []byte) (prefix byte, isQuoted bool) { if len(src) == 0 { return 0, false }