In my function declarations and roxygen2 comments, I have hard-wrapped all lines to less than 80 characters. Roxygen2 appears to be expanding my function definitions to violate this, causing R-devel to complain about my over 90 character length lines.
For instance, I declare my function in my .R file with hard-wrapped arguments,
bib_format <- function(ordering =
c("authors", "year", "title", "journal",
"volume", "number", "pages", "doi", "url"),
authors, year, title, journal, volume,
number, pages, doi, uri, collapse=" "){
but the .Rd files build by devtools give me things like this:
\usage{
bib_format(ordering = c("authors", "year", "title", "journal", "volume", "number", "pages", "doi", "url"),
authors, year, title, journal, volume, number, pages,
doi, uri, collapse = " ")
}
In my function declarations and roxygen2 comments, I have hard-wrapped all lines to less than 80 characters. Roxygen2 appears to be expanding my function definitions to violate this, causing R-devel to complain about my over 90 character length lines.
For instance, I declare my function in my .R file with hard-wrapped arguments,
but the .Rd files build by devtools give me things like this: