From 7472e5ecc6fee7cf214d6c36efc08bf89df27955 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Mon, 18 Oct 2021 16:36:28 -0400 Subject: [PATCH] [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 e8d9955b6488..8c158a246328 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 d2a1daa067f1..227bbdcd27a0 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;