From 039005efb321419b76a9b015460a891882c3fef6 Mon Sep 17 00:00:00 2001 From: "Logan C. Brooks" Date: Fri, 8 Nov 2024 12:52:40 -0800 Subject: [PATCH] feat(epi_slide_opt): adjust `[.]new_col_name =` error guidance --- R/slide.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/slide.R b/R/slide.R index e1e00c58..c590c25b 100644 --- a/R/slide.R +++ b/R/slide.R @@ -646,7 +646,7 @@ epi_slide_opt <- function( if ("new_col_name" %in% provided_args || ".new_col_name" %in% provided_args) { cli::cli_abort( "epi_slide_opt: the argument `new_col_name` is not supported for `epi_slide_opt`. If you want to customize - the output column names, use `dplyr::rename` after the slide.", + the output column names, use `.prefix =`, `.suffix =`, or `.new_col_**names** =`.", class = "epiprocess__epi_slide_opt__new_name_not_supported" ) }