diff --git a/R/utils.R b/R/utils.R index 65f8d3120..8fc7856cf 100644 --- a/R/utils.R +++ b/R/utils.R @@ -6,7 +6,6 @@ deparse_all <- function(x) { #' Provides comma-separated string out of the parameters #' @export #' @keywords internal -#' @param ... Arguments to be constructed into the string named_commas <- function(x) { if (is.list(x)) { x <- purrr::map_chr(x, as_label) diff --git a/man/named_commas.Rd b/man/named_commas.Rd index 8a1e2644a..070066484 100644 --- a/man/named_commas.Rd +++ b/man/named_commas.Rd @@ -6,9 +6,6 @@ \usage{ named_commas(x) } -\arguments{ -\item{...}{Arguments to be constructed into the string} -} \description{ Provides comma-separated string out of the parameters }