Skip to content

Commit b2213ba

Browse files
authored
Merge pull request #114 from tidyomics/improve-startup-message-tidyprint
Update startup message in zzz.R to use cli for improved formatting an…
2 parents ef6f9cb + 42832c7 commit b2213ba

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

R/zzz.R

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
attached <- tidyverse_attach()
5757

5858
# Print loading message about printing
59-
packageStartupMessage(
60-
"tidySummarizedExperiment says: Printing is now handled externally. ",
61-
"If you want to visualize the data in a tidy way, do library(tidyprint). ",
62-
"See https://github.com/tidyomics/tidyprint for more information."
63-
)
59+
cli::cli_alert_info(paste0(
60+
"tidySummarizedExperiment says: The tidy printing is now handled externally.\n",
61+
"If you want to visualize the data in a tidy way, do `library(tidyprint)`.\n",
62+
"See `https://github.com/tidyomics/tidyprint` for more information."
63+
))
6464
}

0 commit comments

Comments
 (0)