Merge pull request #186 from birkenfeld/fix

loops: fix two trailing periods in lint msgs
This commit is contained in:
Manish Goregaokar 2015-08-17 11:05:02 +05:30
commit 65deb956f1

View file

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