From f9c8e65f64f0f224065186126cff54b03a434cbd Mon Sep 17 00:00:00 2001 From: llama Date: Sat, 19 Jul 2025 09:00:33 +0800 Subject: [PATCH] fix lint was fine locally though? --- rslib/src/tags/complete.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rslib/src/tags/complete.rs b/rslib/src/tags/complete.rs index cb11c08fe..f995b63a2 100644 --- a/rslib/src/tags/complete.rs +++ b/rslib/src/tags/complete.rs @@ -33,7 +33,8 @@ fn component_to_regex(component: &str) -> Result { Regex::new(&format!("(?i){}", regex::escape(component))).map_err(Into::into) } -/// Returns None if tag wasn't a match, otherwise whether it was a consecutive prefix match +/// Returns None if tag wasn't a match, otherwise whether it was a consecutive +/// prefix match fn filters_match(filters: &[Regex], tag: &str) -> Option { let mut remaining_tag_components = tag.split("::"); let mut is_prefix = true;