Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: David Weber <[email protected]>
  • Loading branch information
dajmcdon and dsweber2 authored Jul 25, 2024
1 parent 79e5125 commit 461d607
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions R/step_epi_slide.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
#' Note that in cases 3 and 4, `x` can be any variable name you like (for
#' example `\(dog) mean(dog, na.rm = TRUE)` will work). But in case 5, the
#' argument must be named `.x`. A common, though very difficult to debug
#' error is using something like `function(x) mean`. This will not work.
#' error is using something like `function(x) mean`. This will not work
#' because it returns the function mean, rather than `mean(x)`
#' @param f_name a character string of at most 20 characters that describes
#' the function. This will be combined with `prefix` and the columns in `...`
#' to name the result using `{prefix}{f_name}_{column}`. It will be determined
#' to name the result using `{prefix}{f_name}_{column}`. By default it will be determined
#' automatically using `clean_f_name()`.
#' @param before,after non-negative integers.
#' How far `before` and `after` each `time_value` should
Expand Down Expand Up @@ -162,7 +163,7 @@ bake.step_epi_slide <- function(object, new_data, ...) {
if (any(intersection)) {
nms <- new_data_names[intersection]
cli_abort(
c("Name collision occured. The following variable names already exist:",
c("In `step_epi_slide()` a name collision occurred. The following variable names already exist:",
`*` = "{.var {nms}}"
),
call = caller_env()
Expand Down

0 comments on commit 461d607

Please sign in to comment.