In the R Packages book, what is the purpose of suggesting that the following be added to the package-level .R script for its documentation?
#' @docType package
#' @name foo
Also, it's confusing that the usethis::use_package_doc() does not produce the same output that matches what we see in the example of R Packages, documenting packages.
In the R Packages book, what is the purpose of suggesting that the following be added to the package-level .R script for its documentation?
Also, it's confusing that the
usethis::use_package_doc()
does not produce the same output that matches what we see in the example of R Packages, documenting packages.