Skip to content

Commit 8d5dbf6

Browse files
committed
fix character issue
1 parent e600f5e commit 8d5dbf6

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "TidierFiles"
22
uuid = "8ae5e7a9-bdd3-4c93-9cc3-9df4d5d947db"
33
authors = ["Daniel Rizk <[email protected]> and contributors"]
4-
version = "0.3.1"
4+
version = "0.3.2"
55

66
[deps]
77
Arrow = "69666777-d1a9-59fb-9406-91d4454c9d45"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Currently supported file types:
2525
- `read_dta` and `write_dta` (.dta)
2626
- `read_arrow` and `write_arrow`
2727
- `read_parquet` and `write_parquet`
28+
- `read_json` and `write_json`
2829
- `read_rdata` (.rdata and .rds)
2930
- `read_gsheet` and `write_gsheet` (Google Sheets)
3031
- `read_json` and `write_json`

docs/src/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Currently supported file types:
2020
- `read_sas` and `write_sas` (.sas7bdat and .xpt)
2121
- `read_dta` and `write_dta` (.dta)
2222
- `read_arrow` and `write_arrow`
23+
- `read_json` and `write_json`
2324
- `read_parquet` and `write_parquet`
2425
- `read_rdata` (.rdata and .rds)
2526
- `read_gsheet` and `write_gsheet`(Google Sheets)

src/TidierFiles.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,8 +413,8 @@ function write_csv(
413413
file::String;
414414
missing_value::String = "",
415415
append::Bool = false,
416-
delim = ",",
417-
decimal = ".",
416+
delim = ',',
417+
decimal = '.',
418418
col_names::Bool = true,
419419
eol::String = "\n",
420420
num_threads::Int = Threads.nthreads())

0 commit comments

Comments
 (0)