Skip to content

Commit 86c0225

Browse files
committed
Fix typo in hasQuotePrefix return variable
Corrected the spelling of the return variable from 'isQuored' to 'isQuoted' in the hasQuotePrefix function.
1 parent 3a7a190 commit 86c0225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parser.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ func indexOfNonSpaceChar(src []byte) int {
212212
}
213213

214214
// hasQuotePrefix reports whether charset starts with single or double quote and returns quote character
215-
func hasQuotePrefix(src []byte) (prefix byte, isQuored bool) {
215+
func hasQuotePrefix(src []byte) (prefix byte, isQuoted bool) {
216216
if len(src) == 0 {
217217
return 0, false
218218
}

0 commit comments

Comments
 (0)