You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The roxygen files as they currently stand are quite messy to read, and it makes error tracking very difficult. We need to clean the doc, remove all superfluous {}, e.g
@details {
bla bla
\itemize{
\item{arg:}{this is bla bla a very very long description which is way way way way more than 80 characters}
\item{anotherarg:}{toto il est beau}
}}
should be
@details
bla bla
\itemize{
\item arg this is bla bla shorter and
on several lines if needed, so that
we can read it
\item anotherarg toto il est beau
}
including the lines between items; I have started this on the branch cleandoc
The text was updated successfully, but these errors were encountered:
The roxygen files as they currently stand are quite messy to read, and it makes error tracking very difficult. We need to clean the doc, remove all superfluous
{}
, e.gshould be
including the lines between items; I have started this on the branch cleandoc
The text was updated successfully, but these errors were encountered: