Skip to content

Commit

Permalink
Merge pull request #134 from ropensci/crayon
Browse files Browse the repository at this point in the history
Fix bullet spacing on console when there are multiple Deleted objects
  • Loading branch information
slager committed Apr 25, 2024
2 parents 2dc683b + d0baee0 commit abd0baa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/prompt.R
Expand Up @@ -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,
Expand Down

0 comments on commit abd0baa

Please sign in to comment.