diff --git a/R/rust_sitrep.R b/R/rust_sitrep.R index 04e7a388..2786cb3b 100644 --- a/R/rust_sitrep.R +++ b/R/rust_sitrep.R @@ -2,7 +2,7 @@ #' #' Prints out a detailed report on the state of Rust infrastructure on the host machine. #' @export -#' @return Nothing +#' @return NULL (invisibly) rust_sitrep <- function() { cargo_v <- get_version("cargo") cargo_msg <- if (is.na(cargo_v)) { @@ -84,8 +84,6 @@ rust_sitrep <- function() { } cli::cli_inform(msgs) - - invisible(NULL) } get_version <- function(cmd) { diff --git a/man/rust_sitrep.Rd b/man/rust_sitrep.Rd index ee1198b1..faa07aab 100644 --- a/man/rust_sitrep.Rd +++ b/man/rust_sitrep.Rd @@ -7,7 +7,7 @@ rust_sitrep() } \value{ -Nothing +NULL (invisibly) } \description{ Prints out a detailed report on the state of Rust infrastructure on the host machine.