package - How to avoid (R CMD checks) warnings about undocumented objects when reexporting a symbol? -
suppose have r package a exports function f. package b imports f a, , exports it. more precisely, namespace file of b looks like:
importfrom(a, f) export(f)
the problem when doing r cmd check of package b (with r-3.0.1) get:
* checking missing documentation entries ... warning undocumented code objects: ‘f’
how avoid without duplicating documentation a::f ?
Comments
Post a Comment