Skip to content

Commit

Permalink
fix spacing of multiple bullets
Browse files Browse the repository at this point in the history
  • Loading branch information
slager committed Apr 25, 2024
1 parent 2dc683b commit d0baee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/prompt.R
Original file line number Diff line number Diff line change
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 d0baee0

Please sign in to comment.