From e4646f9b5970ce628af621da7c22c6825fe6b44a Mon Sep 17 00:00:00 2001 From: abhro <5664668+abhro@users.noreply.github.com> Date: Sun, 9 Nov 2025 14:44:24 -0500 Subject: [PATCH] Update method signature and example in `CSV.read()` docstring --- src/CSV.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CSV.jl b/src/CSV.jl index 7a6789a9..8edfe2f1 100644 --- a/src/CSV.jl +++ b/src/CSV.jl @@ -79,13 +79,13 @@ include("rows.jl") include("write.jl") """ -`CSV.read(source, sink::T; kwargs...)` => T + CSV.read(source, sink::T; kwargs...) => T Read and parses a delimited file or files, materializing directly using the `sink` function. Allows avoiding excessive copies of columns for certain sinks like `DataFrame`. # Example -``` +```julia-repl julia> using CSV, DataFrames julia> path = tempname();