diff --git a/arrow/examples/builders.rs b/arrow/examples/builders.rs index 61cce0ed97a5..b97c8cad0e22 100644 --- a/arrow/examples/builders.rs +++ b/arrow/examples/builders.rs @@ -15,6 +15,8 @@ // specific language governing permissions and limitations // under the License. +#![allow(clippy::suspicious_doc_comments)] + ///! Many builders are available to easily create different types of arrow arrays extern crate arrow; diff --git a/arrow/examples/dynamic_types.rs b/arrow/examples/dynamic_types.rs index 58e41560e238..bfa7ecb32dab 100644 --- a/arrow/examples/dynamic_types.rs +++ b/arrow/examples/dynamic_types.rs @@ -15,6 +15,8 @@ // specific language governing permissions and limitations // under the License. +#![allow(clippy::suspicious_doc_comments)] + ///! This example demonstrates dealing with mixed types dynamically at runtime use std::sync::Arc; diff --git a/arrow/examples/tensor_builder.rs b/arrow/examples/tensor_builder.rs index 1ef53920e046..4e576cdbbdc1 100644 --- a/arrow/examples/tensor_builder.rs +++ b/arrow/examples/tensor_builder.rs @@ -15,6 +15,8 @@ // specific language governing permissions and limitations // under the License. +#![allow(clippy::suspicious_doc_comments)] + ///! Tensor builder example extern crate arrow;