Skip to content

Commit

Permalink
Unambiguously identify regex module.
Browse files Browse the repository at this point in the history
  • Loading branch information
01mf02 committed Jun 26, 2024
1 parent 753aa65 commit 75bd66b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jaq-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ where
let re_flags = re.cartesian(flags, (cv.0, cv.1.clone()));

Box::new(re_flags.map(move |(re, flags)| {
use regex::Part::{Matches, Mismatch};
use crate::regex::Part::{Matches, Mismatch};
let fail_flag = |e| Error::str(format_args!("invalid regex flag: {e}"));
let fail_re = |e| Error::str(format_args!("invalid regex: {e}"));

Expand Down

0 comments on commit 75bd66b

Please sign in to comment.