]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/inherent_to_string.rs
Normalize lint messages
[rust.git] / clippy_lints / src / inherent_to_string.rs
index 150a9ea9c96735fc646d0e4faac928334007c65c..9d7c3b46fed5678489f1e5206324f52c4a53f9f0 100644 (file)
@@ -1,7 +1,7 @@
 use if_chain::if_chain;
 use rustc::declare_lint_pass;
-use rustc::hir::{ImplItem, ImplItemKind};
 use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
+use rustc_hir::{ImplItem, ImplItemKind};
 use rustc_session::declare_tool_lint;
 
 use crate::utils::{
@@ -88,7 +88,7 @@
     /// ```
     pub INHERENT_TO_STRING_SHADOW_DISPLAY,
     correctness,
-    "type implements inherent method `to_string()`, which gets shadowed by the implementation of the `Display` trait "
+    "type implements inherent method `to_string()`, which gets shadowed by the implementation of the `Display` trait"
 }
 
 declare_lint_pass!(InherentToString => [INHERENT_TO_STRING, INHERENT_TO_STRING_SHADOW_DISPLAY]);