Skip to content

Commit b2ed663

Browse files
quinnjabhro
andauthored
Update method signature and example in CSV.read() docstring (#1183)
Co-authored-by: abhro <5664668+abhro@users.noreply.github.com>
1 parent 4fc01b7 commit b2ed663

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/CSV.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@ include("rows.jl")
7979
include("write.jl")
8080

8181
"""
82-
`CSV.read(source, sink::T; kwargs...)` => T
82+
CSV.read(source, sink::T; kwargs...) => T
8383
8484
Read and parses a delimited file or files, materializing directly using the `sink` function. Allows avoiding excessive copies
8585
of columns for certain sinks like `DataFrame`.
8686
8787
# Example
88-
```
88+
```julia-repl
8989
julia> using CSV, DataFrames
9090
9191
julia> path = tempname();

0 commit comments

Comments
 (0)