For roxygen2 5.0.1, when using
@inheritParams from
@param \dots bla bla bla.
and the from file already contains another
@param \dots yada yada yada.
then @inheritParams fails to drop duplicate \dots resulting in an R CMD check warning:
* checking Rd \usage sections ... WARNING
Duplicated \argument entries in documentation object 'foo':
‘...’
This is not the case if one uses @param ... instead of @param \dots. It looks like @inheritParams is not aware of the \dots alternative to ....
For roxygen2 5.0.1, when using
and the
fromfile already contains anotherthen
@inheritParamsfails to drop duplicate\dotsresulting in anR CMD checkwarning:This is not the case if one uses
@param ...instead of@param \dots. It looks like@inheritParamsis not aware of the\dotsalternative to....