This is an automated email from the ASF dual-hosted git repository.
baumgold pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-julia.git
The following commit(s) were added to refs/heads/main by this push:
new 7eaf0b2 Fix documentation example for Arrow.Writer (#479)
7eaf0b2 is described below
commit 7eaf0b234cc5c9816537dd39bcd3fd9351c3e2e9
Author: Guilherme Bodin <[email protected]>
AuthorDate: Sat Jul 29 07:32:59 2023 -0300
Fix documentation example for Arrow.Writer (#479)
---
src/write.jl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/write.jl b/src/write.jl
index 3db8dc9..a643ddc 100644
--- a/src/write.jl
+++ b/src/write.jl
@@ -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)