diff options
Diffstat (limited to 'libgo/go/strconv/quote.go')
-rw-r--r-- | libgo/go/strconv/quote.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/strconv/quote.go b/libgo/go/strconv/quote.go index db57065cac1..156a510d213 100644 --- a/libgo/go/strconv/quote.go +++ b/libgo/go/strconv/quote.go @@ -381,7 +381,7 @@ func Unquote(s string) (string, error) { return "", ErrSyntax } - // Is it trivial? Avoid allocation. + // Is it trivial? Avoid allocation. if !contains(s, '\\') && !contains(s, quote) { switch quote { case '"': |