Skip to content

Commit

Permalink
Add missing newline
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed Sep 7, 2017
1 parent 618385d commit 753e7ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/data.R
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ use_data <- function(...,

check_data_paths(paths, overwrite)

done("Saving ", unlist(objs), " to ", paths)
done("Saving ", unlist(objs), " to ", paths, "\n")

envir <- parent.frame()
mapply(
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ use_news_md()
x <- 1
y <- 2
use_data(x, y)
#> ✔ Saving x to ./data/x.rda✔ Saving y to ./data/y.rda
#> ✔ Saving x to ./data/x.rda
#> ✔ Saving y to ./data/y.rda

# use git
use_git()
Expand Down

0 comments on commit 753e7ec

Please sign in to comment.