From 1b6b1bc66e306447cecf2ebae56565c93fcab958 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Tue, 19 Mar 2013 15:04:18 -0700 Subject: bytes,strings: remove user name from BUG in comment R=golang-dev, dave CC=golang-dev https://golang.org/cl/7856048 --- src/pkg/bytes/bytes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pkg/bytes/bytes.go') 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 -- cgit v1.3-5-g9baa