Skip to content

Commit 30b6d04

Browse files
committed
docstring clean up
1 parent 94a2e94 commit 30b6d04

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/docstrings.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Write a DataFrame to a CSV (comma-separated values) file.
201201
- `missing_value`: = "": The string to represent missing values in the output file. Default is an empty string.
202202
- `append`: Whether to append to the file if it already exists. Default is false.
203203
- `col_names`: = true: Whether to write column names as the first line of the file. Default is true.
204-
- `eol`: = "\n": The end-of-line character to use in the output file. Default is the newline character.
204+
- `eol`: The end-of-line character to use in the output file. Default is the newline character.
205205
- `num_threads` = Threads.nthreads(): The number of threads to use for writing the file. Default is the number of available threads.
206206
207207
# Examples
@@ -223,7 +223,7 @@ Write a DataFrame to a TSV (tab-separated values) file.
223223
- `missing_value`: = "": The string to represent missing values in the output file. Default is an empty string.
224224
- `append`: Whether to append to the file if it already exists. Default is false.
225225
- `col_names`: = true: Whether to write column names as the first line of the file. Default is true.
226-
- `eol`: = "\n": The end-of-line character to use in the output file. Default is the newline character.
226+
- `eol`: The end-of-line character to use in the output file. Default is the newline character.
227227
- `num_threads` = Threads.nthreads(): The number of threads to use for writing the file. Default is the number of available threads.
228228
229229
# Examples
@@ -416,6 +416,7 @@ julia> read_sas("test.xpt")
416416
─────┼──────────────────
417417
1 │ sav 10.1
418418
2 │ por 10.2
419+
```
419420
"""
420421

421422
const docstring_read_sav =

0 commit comments

Comments
 (0)