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.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/regex/src/matcher.rs b/crates/regex/src/matcher.rs
index e5f560f2..3511e75b 100644
--- a/crates/regex/src/matcher.rs
+++ b/crates/regex/src/matcher.rs
@@ -19,7 +19,7 @@ use word::WordMatcher;
/// types of optimizations.
///
/// The syntax supported is documented as part of the regex crate:
-/// https://docs.rs/regex/*/regex/#syntax
+/// <https://docs.rs/regex/#syntax>.
#[derive(Clone, Debug)]
pub struct RegexMatcherBuilder {
config: Config,
@@ -41,7 +41,7 @@ impl RegexMatcherBuilder {
/// pattern.
///
/// The syntax supported is documented as part of the regex crate:
- /// https://docs.rs/regex/*/regex/#syntax
+ /// <https://docs.rs/regex/#syntax>.
pub fn build(&self, pattern: &str) -> Result<RegexMatcher, Error> {
let chir = self.config.hir(pattern)?;
let fast_line_regex = chir.fast_line_regex()?;