From 418e2f6aaeb686c67d7ffc993f7137ed61426c29 Mon Sep 17 00:00:00 2001 From: ChaiShushan Date: Sat, 10 Aug 2013 11:38:42 +1000 Subject: [PATCH] strconv: fix typo in docs R=golang-dev, r CC=golang-dev https://golang.org/cl/12709044 --- src/pkg/strconv/quote.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/strconv/quote.go b/src/pkg/strconv/quote.go index 8cbef88b51..7d6cdcf0b5 100644 --- a/src/pkg/strconv/quote.go +++ b/src/pkg/strconv/quote.go @@ -133,7 +133,7 @@ func QuoteRuneToASCII(r rune) string { return quoteWith(string(r), '\'', true) } -// AppendQuoteRune appends a single-quoted Go character literal representing the rune, +// AppendQuoteRuneToASCII appends a single-quoted Go character literal representing the rune, // as generated by QuoteRuneToASCII, to dst and returns the extended buffer. func AppendQuoteRuneToASCII(dst []byte, r rune) []byte { return append(dst, QuoteRuneToASCII(r)...) -- 2.48.1