diff options
Diffstat (limited to 'src/strconv')
| -rw-r--r-- | src/strconv/quote.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strconv/quote.go b/src/strconv/quote.go index d626cd0837..1f4929a952 100644 --- a/src/strconv/quote.go +++ b/src/strconv/quote.go @@ -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.) +// 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 { |
