]> Cypherpunks repositories - gostls13.git/commitdiff
bytes,strings: remove user name from BUG in comment
authorRob Pike <r@golang.org>
Tue, 19 Mar 2013 22:04:18 +0000 (15:04 -0700)
committerRob Pike <r@golang.org>
Tue, 19 Mar 2013 22:04:18 +0000 (15:04 -0700)
R=golang-dev, dave
CC=golang-dev
https://golang.org/cl/7856048

src/pkg/bytes/bytes.go
src/pkg/strings/strings.go

index 00ce37da08ed86bdcbc69db9ce95b95900ab71ba..e42f7443946134cbc01acc2ae9d9baef712fac47 100644 (file)
@@ -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
index 2c893fcedd50cc76be58d225f9acc536191a41fb..986f6d61ebc94d264751f0cbb1411463c479ae4e 100644 (file)
@@ -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