I have created a roxygen file for a function that uses S3 an class. I roxygenize and then build and check and get a warning:
* checking S3 generic/method co
I think this happens because a method must have all the same arguments as the generic. So add ... to the arguments of common.list(). Like this:
...
common.list()
common.list <- function(word.list, overlap = "all", equal.or = "more", ...)
Similarly, common.default() should have word.list as an argument.
common.default()
word.list