needless_range_loop: improve documentation

This commit is contained in:
Tyler Weaver 2023-01-29 11:41:53 -07:00
parent 96c28d1f69
commit 4d266d31de
No known key found for this signature in database
3 changed files with 7 additions and 6 deletions

View file

@ -61,7 +61,8 @@ declare_clippy_lint! {
///
/// ### Why is this bad?
/// Just iterating the collection itself makes the intent
/// more clear and is probably faster.
/// more clear and is probably faster because it eliminates
/// the bounds check that is done when indexing.
///
/// ### Example
/// ```rust

View file

@ -149,7 +149,7 @@ pub(super) fn check<'tcx>(
|diag| {
multispan_sugg(
diag,
"consider using an iterator",
"consider using an iterator and enumerate",
vec![
(pat.span, format!("({}, <item>)", ident.name)),
(