From: Hidetatsu Yaginuma Date: Sun, 30 Dec 2018 07:03:53 +0000 (+0900) Subject: strconv: add missing package name into doc.go(godoc overview) X-Git-Tag: go1.12beta2~71 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f4f1b14ab497539bc2fd326965c8a4b40bbae49d;p=gostls13.git strconv: add missing package name into doc.go(godoc overview) Change-Id: I336ad707a85bf0c81b6c2230c90452c0b3b92924 Reviewed-on: https://go-review.googlesource.com/c/155998 Reviewed-by: Robert Griesemer --- diff --git a/src/strconv/doc.go b/src/strconv/doc.go index cba898426a..8db725f96a 100644 --- a/src/strconv/doc.go +++ b/src/strconv/doc.go @@ -46,8 +46,8 @@ // The latter guarantees that the result is an ASCII string, by escaping // any non-ASCII Unicode with \u: // -// q := Quote("Hello, 世界") -// q := QuoteToASCII("Hello, 世界") +// q := strconv.Quote("Hello, 世界") +// q := strconv.QuoteToASCII("Hello, 世界") // // QuoteRune and QuoteRuneToASCII are similar but accept runes and // return quoted Go rune literals.