naive_bytecount: make lint adhere to lint message convention

This commit is contained in:
Matthias Krüger 2020-07-23 15:18:13 +02:00
parent fd379a889e
commit 40416c0fa8
2 changed files with 8 additions and 8 deletions

View file

@ -82,8 +82,8 @@ impl<'tcx> LateLintPass<'tcx> for ByteCount {
cx,
NAIVE_BYTECOUNT,
expr.span,
"You appear to be counting bytes the naive way",
"Consider using the bytecount crate",
"you appear to be counting bytes the naive way",
"consider using the bytecount crate",
format!("bytecount::count({}, {})",
snippet_with_applicability(cx, haystack.span, "..", &mut applicability),
snippet_with_applicability(cx, needle.span, "..", &mut applicability)),