aboutsummaryrefslogtreecommitdiff
path: root/src/strconv
diff options
context:
space:
mode:
authorHidetatsu Yaginuma <ygnmhdtt@gmail.com>2018-12-30 16:03:53 +0900
committerRobert Griesemer <gri@golang.org>2018-12-30 18:30:11 +0000
commitf4f1b14ab497539bc2fd326965c8a4b40bbae49d (patch)
tree5fdfb399c190d49a6762bd7d8929a040d8023735 /src/strconv
parent3e89272f9c87f69dc687b96687b1e3d29e9f5d84 (diff)
downloadgo-f4f1b14ab497539bc2fd326965c8a4b40bbae49d.tar.gz
go-f4f1b14ab497539bc2fd326965c8a4b40bbae49d.zip
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 <gri@golang.org>
Diffstat (limited to 'src/strconv')
-rw-r--r--src/strconv/doc.go4
1 files changed, 2 insertions, 2 deletions
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.