diff options
| author | Jeremy Stucki <stucki.jeremy@gmail.com> | 2019-08-12 10:52:09 +0200 |
|---|---|---|
| committer | Jeremy Stucki <stucki.jeremy@gmail.com> | 2019-08-12 10:53:23 +0200 |
| commit | 09e9568c266a17ec398242cb85b454bdaf5f5e4c (patch) | |
| tree | e40b5450ca18ffece4783be6bad3064f9c3af197 | |
| parent | 6ddf8c36d774e22133f68aef162a66d1685ba42c (diff) | |
| download | rust-09e9568c266a17ec398242cb85b454bdaf5f5e4c.tar.gz rust-09e9568c266a17ec398242cb85b454bdaf5f5e4c.zip | |
Change lint type from 'pedantic' → 'complexity'
| -rw-r--r-- | clippy_lints/src/methods/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/methods/mod.rs b/clippy_lints/src/methods/mod.rs index 41b92b05246..2311d0df764 100644 --- a/clippy_lints/src/methods/mod.rs +++ b/clippy_lints/src/methods/mod.rs @@ -360,7 +360,7 @@ declare_clippy_lint! { /// iter.flatten(); /// ``` pub FLAT_MAP_IDENTITY, - pedantic, + complexity, "call to `flat_map` where `flatten` is sufficient" } |
