Skip to content

Commit 79abb58

Browse files
committed
document remaining arg
1 parent e499737 commit 79abb58

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

R/methods-epi_df.R

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ dplyr_row_slice.epi_df <- function(data, i, ...) {
204204
}
205205

206206
#' @method group_by epi_df
207+
#' @param .data an `epi_df`
207208
#' @rdname print.epi_df
208209
#' @export
209210
group_by.epi_df <- function(.data, ...) {
@@ -235,8 +236,8 @@ group_modify.epi_df <- function(.data, .f, ..., .keep = FALSE) {
235236
#' @rdname print.epi_df
236237
#' @param .data an `epi_df`
237238
#' @export
238-
unnest.epi_df <- function(data, ...) {
239-
dplyr::dplyr_reconstruct(NextMethod(), data)
239+
unnest.epi_df <- function(.data, ...) {
240+
dplyr::dplyr_reconstruct(NextMethod(), .data)
240241
}
241242

242243
# Simple reclass function

man/print.epi_df.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)