Skip to content

Commit

Permalink
strconv: add missing package name into doc.go(godoc overview)
Browse files Browse the repository at this point in the history
Change-Id: I336ad707a85bf0c81b6c2230c90452c0b3b92924
Reviewed-on: https://go-review.googlesource.com/c/155998
Reviewed-by: Robert Griesemer <gri@golang.org>
  • Loading branch information
Hidetatsu Yaginuma authored and griesemer committed Dec 30, 2018
1 parent 3e89272 commit f4f1b14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/strconv/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit f4f1b14

Please sign in to comment.