We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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()
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?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Created on 2023-07-26 with reprex v2.0.2
Should be:
#> ℹ Did you forget to name an argument?
The text was updated successfully, but these errors were encountered: