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

alamb 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 7472e5e  [MINOR] Delete temp file from docs (#836)
7472e5e is described below

commit 7472e5ecc6fee7cf214d6c36efc08bf89df27955
Author: Andrew Lamb <[email protected]>
AuthorDate: Mon Oct 18 16:36:28 2021 -0400

    [MINOR] Delete temp file from docs (#836)
    
    * 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