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

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

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

commit e6c5e1c877bd94b3d6e545567f901d9962257cf8
Author: Andrew Lamb <an...@nerdnetworks.org>
AuthorDate: Tue Nov 23 10:05:00 2021 -0500

    Fix CI for latest nightly (#970) (#973)
    
    * 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 5d4e57a..235d868 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);