diff --git a/service/service.go b/service/service.go index f7c5174..685d5b9 100644 --- a/service/service.go +++ b/service/service.go @@ -88,7 +88,7 @@ func (cl ContributorList) Swap(i, j int) { cl[i], cl[j] = cl[j], cl[i] } -// CleanTitle returns the string with spaces trimmed and the first character title-cased +// CleanTitle returns the string with spaces trimmed and the first rune title-cased func CleanTitle(s string) string { s = strings.TrimSpace(s)