R=rsc
CC=golang-dev
https://golang.org/cl/864041
return r
}
-// ToTitlemaps the rune to upper case giving priority to the special mapping.
+// ToTitle maps the rune to title case giving priority to the special mapping.
func (special SpecialCase) ToTitle(rune int) int {
r := to(TitleCase, rune, []CaseRange(special))
if r == rune {
return r
}
-// ToLower maps the rune to upper case giving priority to the special mapping.
+// ToLower maps the rune to lower case giving priority to the special mapping.
func (special SpecialCase) ToLower(rune int) int {
r := to(LowerCase, rune, []CaseRange(special))
if r == rune {