diff --git a/R/skim_print.R b/R/skim_print.R index 0131ccbf..5dbd4eaa 100644 --- a/R/skim_print.R +++ b/R/skim_print.R @@ -53,7 +53,7 @@ print.one_skim_df <- function(x, ...) { variable_type <- paste("Variable type:", attr(x, "skim_type")) top_line <- cli::rule(line = 1, left = variable_type) - out <- format(x, ..., n = n, width = width, n_extra = n_extra, dots) + out <- format(x, ..., n = n, width = width, n_extra = n_extra) if (strip_metadata) { metadata <- -1 * grab_tibble_metadata(out) } else { diff --git a/man/print.Rd b/man/print.Rd index 1a7b002c..b553cd04 100644 --- a/man/print.Rd +++ b/man/print.Rd @@ -38,7 +38,7 @@ default and always print all columns.} if the width is too small for the entire tibble. If \code{NULL}, the default, will print information about at most \code{tibble.max_extra_cols} extra columns.} -\item{strip_metadata}{Whether tbl metadata should be removed.} +\item{strip_metadata}{Whether tibble metadata should be removed.} \item{...}{Other arguments passed on to individual methods.} }