Commit 1b6b1bc6 authored by Rob Pike's avatar Rob Pike

bytes,strings: remove user name from BUG in comment

R=golang-dev, dave
CC=golang-dev
https://golang.org/cl/7856048
parent 54dffda2
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment