R/cap_first.R
cap_first.Rd
Capitalize first letter in string
cap_first(x)
A character vector
A character vector with first character of each item capitalized
cap_first("camille") #> [1] "Camille" cap_first(c("camille", "new haven")) #> [1] "Camille" "New haven"