aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2015-06-03 12:21:06 -0700
committerRob Pike <r@golang.org>2015-06-03 19:28:41 +0000
commitcb2014609792a182a62a7565cf7923ffda8dcb49 (patch)
tree53bd1f603d154ac042d0a27ebf2b44c617822cb9 /src
parent477614e4a12899c72aeaa0e5cee2f3283929542f (diff)
downloadgo-cb2014609792a182a62a7565cf7923ffda8dcb49.tar.xz
strings: mention UTF-8 in the package comment.
Also add a reference to the strings blog post. Fixes #11045. Change-Id: Ic0a8908cbd7b51a36d104849fa0e8abfd54de2b9 Reviewed-on: https://go-review.googlesource.com/10662 Reviewed-by: Andrew Gerrand <adg@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src')
-rw-r--r--src/strings/strings.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/strings/strings.go b/src/strings/strings.go
index 567a3c5bfa..3f5f3f7f01 100644
--- a/src/strings/strings.go
+++ b/src/strings/strings.go
@@ -2,7 +2,9 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// Package strings implements simple functions to manipulate strings.
+// Package strings implements simple functions to manipulate UTF-8 encoded strings.
+//
+// For information about UTF-8 strings in Go, see http://blog.golang.org/strings.
package strings
import (