check_dots_unnamed {ellipsis} | R Documentation |
Named arguments in ... are often a sign of misspelled argument names.
check_dots_unnamed(env = parent.frame())
env |
Environment in which to look for ... |
f <- function(..., foofy = 8) { check_dots_unnamed() c(...) } f(1, 2, 3, foofy = 4) f(1, 2, 3, foof = 4)