1\name{capitalize}
2\alias{capitalize}
3%- Also NEED an '\alias' for EACH other topic documented here.
4\title{ capitalize the first letter of a string}
5\description{
6Capitalizes the first letter of each element of the string vector.
7}
8\usage{
9capitalize(string)
10}
11%- maybe also 'usage' for other objects documented here.
12\arguments{
13  \item{string}{ String to be capitalized }
14}
15\value{
16  Returns a vector of charaters with the first letter capitalized
17}
18\author{ Charles Dupont }
19\examples{
20capitalize(c("Hello", "bob", "daN"))
21}
22% Add one or more standard keywords, see file 'KEYWORDS' in the
23% R documentation directory.
24\keyword{ manip }
25\keyword{ character }% __ONLY ONE__ keyword per line
26