about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--clippy_lints/src/crate_in_macro_def.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/crate_in_macro_def.rs b/clippy_lints/src/crate_in_macro_def.rs
index 844887dcbe5..ef2f3df105a 100644
--- a/clippy_lints/src/crate_in_macro_def.rs
+++ b/clippy_lints/src/crate_in_macro_def.rs
@@ -63,7 +63,7 @@ impl EarlyLintPass for CrateInMacroDef {
                     CRATE_IN_MACRO_DEF,
                     span,
                     "`crate` references the macro call's crate",
-                    "if reference to the macro definition's crate is intended, use",
+                    "to reference the macro definition's crate, use",
                     String::from("$crate"),
                     Applicability::MachineApplicable,
                 );