-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
I have the following code :
#' Who Am I?
#'
#' @return A tibble with user information
#'
#' @export
#' @rdname whoami
#' @examples
#' users_list(user = "me")
#' whoami()
#'
users_list <- function(user){
[...]
}
#' @export
#' @rdname whoami
whoami <- function(){
users_list(user = "me")
}Roxygenizing this code throws the following:
Functions with @export but no @return:
* Function 'whoami()' with title ''
This is a false positive because using @rdname, the doc for whoami will be the same as the one from user_list.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels