Merge pull request #2370 from Vlad-Shcherbina/patch-1

Document map_clone known problems #498
This commit is contained in:
Oliver Schneider 2018-01-18 09:10:39 +01:00 committed by GitHub
commit 9a5f25aab3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,9 @@
/// **Why is this bad?** It makes the code less readable than using the
/// `.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:**
/// ```rust