Conversation
Current Aviator status
This PR is currently in state
See the real-time status of this PR on the
Aviator webapp.
Use the Aviator Chrome Extension
to see the status of your PR within GitHub.
|
|
|
|
@maelle: Should this be part of the upcoming 2.1.3? |
| #' shortest paths to the same vertex are collected into consecutive elements | ||
| #' of the list. | ||
| #' For `all_shortest_paths()` a list is returned: | ||
| #' \item{vpaths}{This is a list. Each list element |
There was a problem hiding this comment.
Do we need \describe{} here? See https://developer.r-project.org/parseRd.pdf .
Yes, in R documentation (.Rd) files, you need to use \describe{} if you want to use \item{}{}.
Explanation:
\describe{}is used to create a description list in R documentation.\item{}{}defines individual list items, where the first argument is the term being described, and the second argument is its description.
Example:
\describe{
\item{param1}{This is the first parameter description.}
\item{param2}{This is the second parameter description.}
}Alternative:
- If you don’t need a term-description list and just want bullet points, you can use
\itemize{}instead:\itemize{ \item First bullet point. \item Second bullet point. }
So, yes, \describe{} is required for \item{}{} in .Rd files.
|
@maelle: Do you want to take another stab? |
|
I'll start a new branch because of the conflicts. |
Fix #1029
@szhorvat I'll need your help.