From: Rob Pike Date: Tue, 19 Mar 2013 22:04:18 +0000 (-0700) Subject: bytes,strings: remove user name from BUG in comment X-Git-Tag: go1.1rc2~435 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1b6b1bc66e306447cecf2ebae56565c93fcab958;p=gostls13.git bytes,strings: remove user name from BUG in comment R=golang-dev, dave CC=golang-dev https://golang.org/cl/7856048 --- 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 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