aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/bytes/bytes.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/bytes/bytes.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/bytes/bytes.go')
-rw-r--r--src/pkg/bytes/bytes.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/bytes/bytes.go b/src/pkg/bytes/bytes.go
index 00ce37da08..e42f744394 100644
--- a/src/pkg/bytes/bytes.go
+++ b/src/pkg/bytes/bytes.go
@@ -464,7 +464,7 @@ func isSeparator(r rune) bool {
// Title returns a copy of 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 []byte) []byte {
// Use a closure here to remember state.
// Hackish but effective. Depends on Map scanning in order and calling