summaryrefslogtreecommitdiffstats
path: root/crates/ignore/src/gitignore.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ignore/src/gitignore.rs')
-rw-r--r--crates/ignore/src/gitignore.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ignore/src/gitignore.rs b/crates/ignore/src/gitignore.rs
index 2b8844b9..6eea9c4a 100644
--- a/crates/ignore/src/gitignore.rs
+++ b/crates/ignore/src/gitignore.rs
@@ -19,8 +19,8 @@ use globset::{Candidate, GlobBuilder, GlobSet, GlobSetBuilder};
use regex::bytes::Regex;
use thread_local::ThreadLocal;
-use pathutil::{is_file_name, strip_prefix};
-use {Error, Match, PartialErrorBuilder};
+use crate::pathutil::{is_file_name, strip_prefix};
+use crate::{Error, Match, PartialErrorBuilder};
/// Glob represents a single glob in a gitignore file.
///