You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2023/04/19 21:33:30 UTC

[arrow-rs] branch master updated: Update writer.rs (#4100)

This is an automated email from the ASF dual-hosted git repository.

tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 93484a10d Update writer.rs (#4100)
93484a10d is described below

commit 93484a10d145617434432d610e241640a06b382f
Author: Rin Arakaki <rn...@gmail.com>
AuthorDate: Thu Apr 20 06:33:22 2023 +0900

    Update writer.rs (#4100)
---
 parquet/src/file/writer.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/parquet/src/file/writer.rs b/parquet/src/file/writer.rs
index 4983ed55f..9923970be 100644
--- a/parquet/src/file/writer.rs
+++ b/parquet/src/file/writer.rs
@@ -544,7 +544,7 @@ pub struct SerializedColumnWriter<'a> {
 }
 
 impl<'a> SerializedColumnWriter<'a> {
-    /// Create a new [`SerializedColumnWriter`] from a `[`ColumnWriter`] and an
+    /// Create a new [`SerializedColumnWriter`] from a [`ColumnWriter`] and an
     /// optional callback to be invoked on [`Self::close`]
     pub fn new(
         inner: ColumnWriter<'a>,
@@ -563,7 +563,7 @@ impl<'a> SerializedColumnWriter<'a> {
         get_typed_column_writer_mut(&mut self.inner)
     }
 
-    /// Close this [`SerializedColumnWriter]
+    /// Close this [`SerializedColumnWriter`]
     pub fn close(mut self) -> Result<()> {
         let r = match self.inner {
             ColumnWriter::BoolColumnWriter(typed) => typed.close()?,