mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-02-25 20:07:21 +00:00
Merge pull request #2370 from Vlad-Shcherbina/patch-1
Document map_clone known problems #498
This commit is contained in:
commit
9a5f25aab3
1 changed files with 3 additions and 1 deletions
|
@ -10,7 +10,9 @@ use utils::{is_adjusted, iter_input_pats, match_qpath, match_trait_method, match
|
||||||
/// **Why is this bad?** It makes the code less readable than using the
|
/// **Why is this bad?** It makes the code less readable than using the
|
||||||
/// `.cloned()` adapter.
|
/// `.cloned()` adapter.
|
||||||
///
|
///
|
||||||
/// **Known problems:** None.
|
/// **Known problems:** Sometimes `.cloned()` requires stricter trait
|
||||||
|
/// bound than `.map(|e| e.clone())` (which works because of the coercion).
|
||||||
|
/// See [#498](https://github.com/rust-lang-nursery/rust-clippy/issues/498).
|
||||||
///
|
///
|
||||||
/// **Example:**
|
/// **Example:**
|
||||||
/// ```rust
|
/// ```rust
|
||||||
|
|
Loading…
Add table
Reference in a new issue