From f613b3c7b58d8e5cf0e2e2b8886068040132d3b2 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Sun, 27 Dec 2020 17:04:56 -0800 Subject: [PATCH] fix: invalid clippy lint name --- sqlx-core/src/lib.rs | 2 +- sqlx/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sqlx-core/src/lib.rs b/sqlx-core/src/lib.rs index a5a253d1..68681d26 100644 --- a/sqlx-core/src/lib.rs +++ b/sqlx-core/src/lib.rs @@ -16,7 +16,7 @@ #![warn(clippy::string_lit_as_bytes)] #![warn(clippy::use_self)] #![warn(clippy::useless_let_if_seq)] -#![allow(clippy::clippy::doc_markdown)] +#![allow(clippy::doc_markdown)] // crate renames to allow the feature name "tokio" and "async-std" (as features // can't directly conflict with dependency names) diff --git a/sqlx/src/lib.rs b/sqlx/src/lib.rs index 0176a724..22625795 100644 --- a/sqlx/src/lib.rs +++ b/sqlx/src/lib.rs @@ -14,7 +14,7 @@ #![warn(clippy::string_lit_as_bytes)] #![warn(clippy::use_self)] #![warn(clippy::useless_let_if_seq)] -#![allow(clippy::clippy::doc_markdown)] +#![allow(clippy::doc_markdown)] #[cfg(feature = "blocking")] pub use sqlx_core::{blocking, Blocking};