Skip to content

Commit 8014e6b

Browse files
committed
Fix styling
1 parent ff281e5 commit 8014e6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clippy_lints/src/path_buf_push_overwrite.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
use crate::utils::{match_type, walk_ptrs_ty, paths, span_help_and_lint};
1+
use crate::utils::{match_type, paths, span_help_and_lint, walk_ptrs_ty};
22
use if_chain::if_chain;
33
use rustc::hir::*;
44
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
5-
use syntax::ast::{LitKind};
65
use rustc::{declare_tool_lint, lint_array};
76
use std::path::Path;
7+
use syntax::ast::{LitKind};
88

99
declare_clippy_lint! {
1010
/// **What it does:*** Checks for `push` calls on `PathBuf` that can cause overwrites.

0 commit comments

Comments
 (0)