R/roxtemp.R

Defines functions roxtemp

Documented in roxtemp

##' Generate a Roxygen Template
##'
##' @title Generate a Roxygen Template
##' @author Dustin Fife
roxtemp = function(){
	f = paste0(
"##' Insert title here
##'
##' Write the description here
##'	
##' Write the details here
##' @param
##' @param
##' @aliases
##' @seealso \\code{\\link{MASS}}
##' @references
##' @return \\item{}{}
##' @author
##' @export
##' @examples"
)
	cat(f)
}
dustinfife/fifer documentation built on Oct. 31, 2020, 3:36 p.m.