aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/strings/strings.go
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2013-03-19 15:04:18 -0700
committerRob Pike <r@golang.org>2013-03-19 15:04:18 -0700
commit1b6b1bc66e306447cecf2ebae56565c93fcab958 (patch)
treeb5680895368d4294438f721d58cb2918c8f22fe2 /src/pkg/strings/strings.go
parent54dffda2b6f967d216b59fcbda116c74b07c4990 (diff)
downloadgo-1b6b1bc66e306447cecf2ebae56565c93fcab958.tar.xz
bytes,strings: remove user name from BUG in comment
R=golang-dev, dave CC=golang-dev https://golang.org/cl/7856048
Diffstat (limited to 'src/pkg/strings/strings.go')
-rw-r--r--src/pkg/strings/strings.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/strings/strings.go b/src/pkg/strings/strings.go
index 2c893fcedd..986f6d61eb 100644
--- a/src/pkg/strings/strings.go
+++ b/src/pkg/strings/strings.go
@@ -495,7 +495,7 @@ func isSeparator(r rune) bool {
// Title returns a copy of the string s with all Unicode letters that begin words
// mapped to their title case.
//
-// BUG(r): The rule Title uses for word boundaries does not handle Unicode punctuation properly.
+// BUG: The rule Title uses for word boundaries does not handle Unicode punctuation properly.
func Title(s string) string {
// Use a closure here to remember state.
// Hackish but effective. Depends on Map scanning in order and calling