Improve suspicious_mapdocumentation

This commit is contained in:
Yuki Okushi 2020-01-20 15:05:40 +09:00
parent f7b3e4f29c
commit f8034e0bc6
2 changed files with 4 additions and 3 deletions

View file

@ -1041,7 +1041,8 @@ declare_clippy_lint! {
/// **What it does:** Checks for calls to `map` followed by a `count`.
///
/// **Why is this bad?** It looks suspicious. Maybe `map` was confused with `filter`.
/// If the `map` call is intentional, this should be rewritten.
/// If the `map` call is intentional, this should be rewritten. Or, if you intend to
/// drive the iterator to completion, you can just use `for_each` instead.
///
/// **Known problems:** None
///
@ -3014,7 +3015,7 @@ fn lint_suspicious_map(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>) {
SUSPICIOUS_MAP,
expr.span,
"this call to `map()` won't have an effect on the call to `count()`",
"make sure you did not confuse `map` with `filter`",
"make sure you did not confuse `map` with `filter` or `for_each`",
);
}

View file

@ -5,7 +5,7 @@ LL | let _ = (0..3).map(|x| x + 2).count();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::suspicious-map` implied by `-D warnings`
= help: make sure you did not confuse `map` with `filter`
= help: make sure you did not confuse `map` with `filter` or `for_each`
error: aborting due to previous error