diff options
| author | Eduardo Broto <ebroto@tutanota.com> | 2020-11-10 22:33:02 +0100 |
|---|---|---|
| committer | Eduardo Broto <ebroto@tutanota.com> | 2020-11-10 22:33:02 +0100 |
| commit | effcb52bbf818ca39c57f9beb7d7d63b1e47d1fd (patch) | |
| tree | c325582a10fc29d0891015d6c77fefcdf82a7e9f | |
| parent | 3ea6f774460fa3009ac02d2ef9869d330bef4f49 (diff) | |
| download | rust-effcb52bbf818ca39c57f9beb7d7d63b1e47d1fd.tar.gz rust-effcb52bbf818ca39c57f9beb7d7d63b1e47d1fd.zip | |
Run cargo dev fmt
| -rw-r--r-- | clippy_lints/src/non_expressive_names.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clippy_lints/src/non_expressive_names.rs b/clippy_lints/src/non_expressive_names.rs index 6b175490cc8..5b42b61fcde 100644 --- a/clippy_lints/src/non_expressive_names.rs +++ b/clippy_lints/src/non_expressive_names.rs @@ -1,7 +1,5 @@ use crate::utils::{span_lint, span_lint_and_then}; -use rustc_ast::ast::{ - Arm, AssocItem, AssocItemKind, Attribute, Block, FnDecl, Item, ItemKind, Local, Pat, PatKind, -}; +use rustc_ast::ast::{Arm, AssocItem, AssocItemKind, Attribute, Block, FnDecl, Item, ItemKind, Local, Pat, PatKind}; use rustc_ast::visit::{walk_block, walk_expr, walk_pat, Visitor}; use rustc_lint::{EarlyContext, EarlyLintPass}; use rustc_middle::lint::in_external_macro; |
