mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 23:20:39 +00:00
Merge pull request #186 from birkenfeld/fix
loops: fix two trailing periods in lint msgs
This commit is contained in:
commit
65deb956f1
1 changed files with 2 additions and 2 deletions
|
@ -39,12 +39,12 @@ impl LintPass for LoopsPass {
|
|||
if visitor.nonindex {
|
||||
span_lint(cx, NEEDLESS_RANGE_LOOP, expr.span, &format!(
|
||||
"the loop variable `{}` is used to index `{}`. Consider using \
|
||||
`for ({}, item) in {}.iter().enumerate()` or similar iterators.",
|
||||
`for ({}, item) in {}.iter().enumerate()` or similar iterators",
|
||||
ident.node.name, indexed, ident.node.name, indexed));
|
||||
} else {
|
||||
span_lint(cx, NEEDLESS_RANGE_LOOP, expr.span, &format!(
|
||||
"the loop variable `{}` is only used to index `{}`. \
|
||||
Consider using `for item in &{}` or similar iterators.",
|
||||
Consider using `for item in &{}` or similar iterators",
|
||||
ident.node.name, indexed, indexed));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue