ucwords

ucwords

[code]
func Ucwords(str string) string {
	return strings.Title(str)
}
[/code]