From d0baee0655a2235b3a91e7893f75dca4514167a9 Mon Sep 17 00:00:00 2001 From: Dave Slager Date: Thu, 25 Apr 2024 16:20:15 -0700 Subject: [PATCH] fix spacing of multiple bullets --- R/prompt.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/prompt.R b/R/prompt.R index ecf5663..70ec43c 100644 --- a/R/prompt.R +++ b/R/prompt.R @@ -89,7 +89,7 @@ .write_changes <- function(string, news_con, what = NULL) { if (length(string) != 0) { if (getOption('DataPackageR_verbose', TRUE)){ - cat(crayon::cyan(paste0("* ",what,": ",string,"\n"))) + cat(crayon::cyan(paste0("* ",what,": ",string,"\n")), sep = "") } writeLines(text = paste0("* ",what,": ", string), con = news_con,