The R Project SVN R

Rev

Rev 51225 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

\name{maintainer}
\alias{maintainer}

\title{
   Show Package Maintainer
}
\description{
  Show the name and email address of the maintainer of a package.
}
\usage{
maintainer(pkg)
}
\arguments{
   \item{pkg}{
     Character. The name of a single package.
}
}
\details{
   Accesses the package description to return the name and email address of
   the maintainer.  
   
   Questions about contributed packages should often be addressed to
   the package maintainer; questions about base packages should
   usually be addressed to the R-help or R-devel mailing lists.  Bug
   reports should be submitted using the \code{\link{bug.report}}
   function.
}
\value{
   A character string giving the name and email address of the maintainer
   of the package.
}

\author{
 David Scott <d.scott@auckland.ac.nz> from code on R-help originally
 due to Charlie Sharpsteen <source@sharpsteen.net>.
}
\references{ 
\url{http://n4.nabble.com/R-help-question-How-can-we-enable-useRs-to-contribute-corrections-to-help-files-faster-tp1572568p1572868.html}
}
\seealso{
\code{\link{packageDescription}}, \code{\link{bug.report}}
}
\examples{
maintainer("MASS")
}
\keyword{utilities}