Update quote.go

This commit is contained in:
Yossef Hisham 2024-07-22 19:08:36 +03:00 committed by GitHub
parent a7adf75075
commit 6242027261
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ func QuotedPrefix(s string) (string, error) {
// or backquoted Go string literal, returning the string value
// that s quotes. (If s is single-quoted, it would be a Go
// character literal; Unquote returns the corresponding
// one-character string; For '' Unquote returns the empty string.)
// one-character string. For '' Unquote returns the empty string.)
func Unquote(s string) (string, error) {
out, rem, err := unquote(s, true)
if len(rem) > 0 {