Предупреждение о согласованности метода S3 при сборке пакета R с Roxygen

Я создал файл roxygen для функции, которая использует класс S3. Я обогащаю кислородом, а затем строю, проверяю и получаю предупреждение:

* checking S3 generic/method consistency ... WARNING
common:
  function(word.list, ...)
common.list:
  function(word.list, overlap, equal.or)

See section 'Generic functions and methods' of the 'Writing R
Extensions' manual.

Поэтому я потратил время на изучение:

http://cran.r-project.org/doc/manuals/R-exts.html#Generic-functions-and-methods & https://github.com/hadley/devtools/wiki/S3

Но я могу'не могу понять, что ямы сделали неправильно в файле ниже. Функция работает как положено.

1) почему происходит предупреждение? 2) как я могу заставить его уйти?

#' Find Common Words Between Groups
#' 
#' Find common words between grouping variables (e.g. people).
#' 
#' @param word.list A list of names chacter vectors.
#' @param overlap Minimum/exact amount of overlap.
#' @param equal.or A character vector of c(\code{"equal"}, \code{"greater"}, 
#' \code{"more"}, \code{"less"}).
#' @param \dots In liu of word.list the user may input n number of character 
#' vectors.
#' @rdname common
#' @return Returns a dataframe of all words that match the criteria set by 
#' \code{overlap} and \code{equal.or}.
#' @export
#' @examples
#' a 

Ответы на вопрос(1)

Ваш ответ на вопрос