From: Ian Lance Taylor Date: Mon, 13 Jan 2025 18:28:19 +0000 (-0800) Subject: strconv: adjust comment so that gofmt doesn't mung it X-Git-Tag: go1.24rc3~2^2~15 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=11e08d9d96fa13346d50b5f728058f2f2647664a;p=gostls13.git strconv: adjust comment so that gofmt doesn't mung it Change-Id: I7fe5c6a0521d3c597eae0f3568942df1db9370b1 Reviewed-on: https://go-review.googlesource.com/c/go/+/642497 LUCI-TryBot-Result: Go LUCI Auto-Submit: Ian Lance Taylor Reviewed-by: Robert Griesemer Reviewed-by: Ian Lance Taylor --- diff --git a/src/strconv/quote.go b/src/strconv/quote.go index 1f4929a952..99c292a8ed 100644 --- a/src/strconv/quote.go +++ b/src/strconv/quote.go @@ -378,7 +378,8 @@ 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 an empty character literal +// Unquote returns the empty string.) func Unquote(s string) (string, error) { out, rem, err := unquote(s, true) if len(rem) > 0 {