Skip to content

Commit

Permalink
Fix documentation example for Arrow.Writer (#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermebodin committed Jul 29, 2023
1 parent f8d2203 commit 7eaf0b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/write.jl
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ It's also possible to automatically close the Writer using a do-block:
```julia
julia> open(Arrow.Writer, tempname()) do writer
partition2 = (col1 = [1, 2], col2 = ["A", "B"])
partition1 = (col1 = [1, 2], col2 = ["A", "B"])
Arrow.write(writer, partition1)
partition2 = (col1 = [3, 4], col2 = ["C", "D"])
Arrow.write(writer, partition1)
Expand Down

0 comments on commit 7eaf0b2

Please sign in to comment.