Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

check_dots_used() should customise error if no arguments named #1641

Open
hadley opened this issue Jul 26, 2023 · 0 comments
Open

check_dots_used() should customise error if no arguments named #1641

hadley opened this issue Jul 26, 2023 · 0 comments

Comments

@hadley
Copy link
Member

hadley commented Jul 26, 2023

x <- c(1, 2, 10, NA)

mean3 <- function(x, ..., na.rm = FALSE, trim = 0) {
  rlang::check_dots_used()
  mean(x, ..., na.rm = na.rm, trim = trim)
}

mean3(x, , TRUE)
#> Error in `mean3()`:
#> ! Arguments in `...` must be used.
#> ✖ Problematic argument:
#> • ..1 = TRUE
#> ℹ Did you misspell an argument name?

Created on 2023-07-26 with reprex v2.0.2

Should be:

#> ℹ Did you forget to name an argument?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant