Skip to content

Documenting non-exported objects

1 message · Hadley Wickham

#
If I don't export an object saved in data/, do I still need to document it?

Currently it seems like I do.  My namespace file looks like this:

export(evaluate)
export(parse_all)
export(replay)

But when I run R CMD check I get:

* checking for missing documentation entries ... WARNING
Undocumented code objects:
  empty_plot

Hadley