[R-pkg-devel] Two problems with fda
On 25/04/2022 8:24 p.m., Duncan Murdoch wrote:
...
\value{
These functions return either a standard \code{fRegress} fit object or
or a model specification:
\item{The \code{fRegress} fit object case:}{
Aha, in a \value{} section, bare \items are supposed to mark components
of the value, so they are automatically code. I think the fix for this
is to make it an explicit \describe list:
\value{
These functions return either a standard \code{fRegress} fit object or
or a model specification:
\describe{
\item{The \code{fRegress} fit object case:}{
... eventually ...
}
An even simpler fix: don't mark the section title as an \item, i.e.
write as
\value{
These functions return either a standard \code{fRegress} fit object or
or a model specification.
The \code{fRegress} fit object case:
\item{field}{description .... }
Duncan Murdoch