Skip to content

Commit 95f2cf5

Browse files
committed
Fix new clippy warning in Rust 1.83.0
1 parent aa9eb1b commit 95f2cf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/helpers/regex.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pub trait CapturesHelper {
88
T: FromStr;
99
}
1010

11-
impl<'h> CapturesHelper for Captures<'h> {
11+
impl CapturesHelper for Captures<'_> {
1212
fn ez_get<T>(&self, name: &str) -> T
1313
where
1414
T: FromStr,

0 commit comments

Comments
 (0)