You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ji...@apache.org on 2021/11/23 03:38:06 UTC

[arrow-rs] branch master updated: Fix CI for latest nightly (#970)

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

jiayuliu 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 d40cdc1  Fix CI for latest nightly (#970)
d40cdc1 is described below

commit d40cdc1a4117ccf6dfe786c2f335ffcc77253a31
Author: Andrew Lamb <an...@nerdnetworks.org>
AuthorDate: Mon Nov 22 22:37:57 2021 -0500

    Fix CI for latest nightly (#970)
    
    * Fix arrow doc examples
    
    * more cleanup
---
 arrow/src/array/mod.rs        | 2 --
 arrow/src/datatypes/schema.rs | 2 --
 2 files changed, 4 deletions(-)

diff --git a/arrow/src/array/mod.rs b/arrow/src/array/mod.rs
index 1298e58..26b410e 100644
--- a/arrow/src/array/mod.rs
+++ b/arrow/src/array/mod.rs
@@ -47,8 +47,6 @@
 //!
 //! # Example
 //! ```
-//! extern crate arrow;
-//!
 //! use arrow::array::Int16Array;
 //!
 //! // Create a new builder with a capacity of 100
diff --git a/arrow/src/datatypes/schema.rs b/arrow/src/datatypes/schema.rs
index cc8ddbd..ecfbe06 100644
--- a/arrow/src/datatypes/schema.rs
+++ b/arrow/src/datatypes/schema.rs
@@ -53,7 +53,6 @@ impl Schema {
     /// # Example
     ///
     /// ```
-    /// # extern crate arrow;
     /// # use arrow::datatypes::{Field, DataType, Schema};
     /// let field_a = Field::new("a", DataType::Int64, false);
     /// let field_b = Field::new("b", DataType::Boolean, false);
@@ -70,7 +69,6 @@ impl Schema {
     /// # Example
     ///
     /// ```
-    /// # extern crate arrow;
     /// # use arrow::datatypes::{Field, DataType, Schema};
     /// # use std::collections::HashMap;
     /// let field_a = Field::new("a", DataType::Int64, false);