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:
parent
54dffda2b6
commit
1b6b1bc66e
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user