Skip to content

Commit

Permalink
Fix list indentation in read() docstring (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenpi authored and quinnj committed Feb 5, 2019
1 parent cc3973a commit 1c1f406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CSV.jl
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ Supported keyword arguments include:
* `comment`: a `String` that occurs at the beginning of a line to signal parsing that row should be skipped
* `use_mmap::Bool=!Sys.iswindows()`: whether the file should be mmapped for reading, which in some cases can be faster
* Parsing options:
* `missingstrings`, `missingstring`: either a `String`, or `Vector{String}` to use as sentinel values that will be parsed as `missing`; by default, only an empty field (two consecutive delimiters) is considered `missing`
* `missingstrings`, `missingstring`: either a `String`, or `Vector{String}` to use as sentinel values that will be parsed as `missing`; by default, only an empty field (two consecutive delimiters) is considered `missing`
* `delim=','`: a `Char` or `String` that indicates how columns are delimited in a file
* `ignorerepeated::Bool=false`: whether repeated (consecutive) delimiters should be ignored while parsing; useful for fixed-width files with delimiter padding between cells
* `quotechar='"'`, `openquotechar`, `closequotechar`: a `Char` (or different start and end characters) that indicate a quoted field which may contain textual delimiters or newline characters
Expand Down

0 comments on commit 1c1f406

Please sign in to comment.