Skip to content

Commit

Permalink
Add missing docs for sheet
Browse files Browse the repository at this point in the history
  • Loading branch information
schloerke committed Jan 28, 2025
1 parent ea7b433 commit a390614
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
3 changes: 3 additions & 0 deletions R/parse-body.R
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,9 @@ parser_parquet <- function(...) {
# worksheet names found in the workbook

#' @describeIn parsers excel parser. See [readxl::read_excel()] for more details. (Defaults to reading in the first worksheet only, use `@parser excel list(sheet=NA)` to read in all worksheets.)
#' @param sheet Sheet to read. Either a string (the name of a sheet), or an
#' integer (the position of the sheet). Defaults to the first sheet. To read all
#' sheets, use `NA`.
#' @export
parser_excel <- function(..., sheet = NULL) {
if (!requireNamespace("readxl", quietly = TRUE)) {
Expand Down
16 changes: 14 additions & 2 deletions man/parsers.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a390614

Please sign in to comment.