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 db57065cac..156a510d21 100644 --- a/src/strconv/quote.go +++ b/src/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 '"': |
