Skip to content

Commit aaac53d

Browse files
committed
fixed minor problem in createJSON function
1 parent 29d69f7 commit aaac53d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

R/createJsonFromData.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ library(jsonlite)
55
createJsonFromData <- function(d) {
66
dat <- checkData(d)
77

8-
json_data <- toJSON(dat, pretty = TRUE, digits = NA)
8+
json_data <- jsonlite::toJSON(dat, pretty = TRUE, digits = NA)
99

1010
write(json_data, paste0(d, ".json"))
1111

0 commit comments

Comments
 (0)