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
#' Who Am I?#'#' @return A tibble with user information #'#' @export#' @rdname whoami#' @examples#' users_list(user = "me")#' whoami()#'users_list<-function(user){
[...]
}
#' @export#' @rdname whoamiwhoami<-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.
The text was updated successfully, but these errors were encountered:
I have the following code :
Roxygenizing this code throws the following:
This is a false positive because using
@rdname
, the doc for whoami will be the same as the one from user_list.The text was updated successfully, but these errors were encountered: