summaryrefslogtreecommitdiffstats
path: root/crates/regex/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/regex/src/lib.rs')
-rw-r--r--crates/regex/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/regex/src/lib.rs b/crates/regex/src/lib.rs
index 4004a692..36efa858 100644
--- a/crates/regex/src/lib.rs
+++ b/crates/regex/src/lib.rs
@@ -13,8 +13,8 @@ extern crate regex;
extern crate regex_syntax;
extern crate thread_local;
-pub use error::{Error, ErrorKind};
-pub use matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder};
+pub use crate::error::{Error, ErrorKind};
+pub use crate::matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder};
mod ast;
mod config;