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

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


The following commit(s) were added to refs/heads/active_release by this push:
     new 70582f4  [MINOR] Delete temp file from docs (#836) (#855)
70582f4 is described below

commit 70582f40dd21f5c710c4946266d0563a92b92337
Author: Andrew Lamb <[email protected]>
AuthorDate: Sun Oct 24 07:08:51 2021 -0400

    [MINOR] Delete temp file from docs (#836) (#855)
    
    * Delete temp file from docs
    
    * fix
    
    * Use gitignore instead
---
 .gitignore               | 2 ++
 parquet/src/arrow/mod.rs | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index e8d9955..8c158a2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,5 @@ rusty-tags.vi
 .idea/
 .vscode
 venv/*
+# created by doctests
+parquet/data.parquet
\ No newline at end of file
diff --git a/parquet/src/arrow/mod.rs b/parquet/src/arrow/mod.rs
index d2a1daa..227bbdc 100644
--- a/parquet/src/arrow/mod.rs
+++ b/parquet/src/arrow/mod.rs
@@ -53,7 +53,7 @@
 //! }
 //! writer.close().unwrap();
 //! ```
-
+//!
 //! `WriterProperties` can be used to set Parquet file options
 //! ```rust
 //! use parquet::file::properties::WriterProperties;

Reply via email to