Update clippy_lints/src/crate_in_macro_def.rs

Co-authored-by: llogiq <bogusandre@gmail.com>
This commit is contained in:
Samuel Moelius 2022-03-30 12:40:25 -04:00 committed by GitHub
parent 9b304533ab
commit abc221e7f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,
);