1
0
mirror of https://github.com/golang/go synced 2024-11-20 03:24:41 -07:00

bytes,strings: remove user name from BUG in comment

R=golang-dev, dave
CC=golang-dev
https://golang.org/cl/7856048
This commit is contained in:
Rob Pike 2013-03-19 15:04:18 -07:00
parent 54dffda2b6
commit 1b6b1bc66e
2 changed files with 2 additions and 2 deletions

View 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

View 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