From 8cb8db4e241ba94142452818dd773aa4a16bff2f Mon Sep 17 00:00:00 2001 From: gnzlbg Date: Wed, 20 Mar 2019 11:30:28 +0100 Subject: [PATCH] Update clippy lint name in jemalloc-ctl --- jemalloc-ctl/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jemalloc-ctl/src/lib.rs b/jemalloc-ctl/src/lib.rs index a436be0..63c2ad8 100644 --- a/jemalloc-ctl/src/lib.rs +++ b/jemalloc-ctl/src/lib.rs @@ -72,7 +72,7 @@ //! ``` #![deny(missing_docs, intra_doc_link_resolution_failure)] #![cfg_attr(not(feature = "use_std"), no_std)] -#![cfg_attr(feature = "cargo-clippy", allow(clippy::stutter))] +#![cfg_attr(feature = "cargo-clippy", allow(clippy::module_name_repetitions))] extern crate jemalloc_sys; extern crate libc;