summaryrefslogtreecommitdiffstats
path: root/crates/regex/src/matcher.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/regex/src/matcher.rs')
-rw-r--r--crates/regex/src/matcher.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/crates/regex/src/matcher.rs b/crates/regex/src/matcher.rs
index 3511e75b..cb7749c8 100644
--- a/crates/regex/src/matcher.rs
+++ b/crates/regex/src/matcher.rs
@@ -5,11 +5,11 @@ use grep_matcher::{
};
use regex::bytes::{CaptureLocations, Regex};
-use config::{Config, ConfiguredHIR};
-use crlf::CRLFMatcher;
-use error::Error;
-use multi::MultiLiteralMatcher;
-use word::WordMatcher;
+use crate::config::{Config, ConfiguredHIR};
+use crate::crlf::CRLFMatcher;
+use crate::error::Error;
+use crate::multi::MultiLiteralMatcher;
+use crate::word::WordMatcher;
/// A builder for constructing a `Matcher` using regular expressions.
///