Skip to content

Commit

Permalink
Fix example in Arrow.Writer (#480)
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermebodin authored Jul 29, 2023
1 parent 7eaf0b2 commit d669562
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 @@ -104,7 +104,7 @@ julia> open(Arrow.Writer, tempname()) do writer
partition1 = (col1 = [1, 2], col2 = ["A", "B"])
Arrow.write(writer, partition1)
partition2 = (col1 = [3, 4], col2 = ["C", "D"])
Arrow.write(writer, partition1)
Arrow.write(writer, partition2)
end
```
"""
Expand Down

0 comments on commit d669562

Please sign in to comment.