The convention is to put a \alias for the method in the help file for
the generic.
Ok, but I guess this won't work if the generic is the base and my method
is in my library?
Sure (and that is part of the debate). Either ignore them, or have a
.Rd with just a very brief description of these (e.g. just their
usages).
4/ Checking for undocumented objects fails with an ERROR when
an (undocumented) assignment object ( "input.series.names<-" ).
I think it works if you document it, though, and the error is correct,
surely? Do you mean it gives ERROR and then stops rather than warns?
Yes, it should warn me about this, but it gives ERROR and stops. (If I
run it with my makefile it returns code 1.) The message is:
in eval(expr, envir, enclos) : couldn't find function
"input.series.names<-"
Hmm. Can you (Paul) perhaps give a small example I could reproduce? I
just tried the following: let the R code contain
"foo<-" <- function(x, value) NULL
Then if an Rd file has \alias{foo<-}, everything is o.k., if not,
"foo<-" is shows as undoc object. How do you get the error?