Skip to content

Commit

Permalink
CRAN 2nd submission
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwenseleers committed Oct 12, 2018
1 parent ba0c13a commit 8383c78
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,25 @@ Running under: Ubuntu 17.10

## Resubmission

This is a resubmission. In this version I have:
This is a second resubmission.

In this version I have:

* Changed the way temporary file names are created in the
examples. Previously I used the syntax:
"""
dir <- tempdir()
filen <- paste0(dir,"\\\\ggplot")
"""
For portable code, I replaced all instances of the above
statement with:
"""
dir <- tempdir()
filen <- paste0(dir,"ggplot")
"""


In the previous version (first resubmission) I had:

* Changed function names in the DESCRIPTION by adding '()'.

Expand Down

0 comments on commit 8383c78

Please sign in to comment.