We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 873119c commit 499e8c2Copy full SHA for 499e8c2
1 file changed
src/scan.rs
@@ -218,7 +218,9 @@ pub fn find_algorithms<'a>(
218
matched = true;
219
break;
220
}
221
- if text != match_text && let Some(m) = re.find(match_text) {
+ if text != match_text
222
+ && let Some(m) = re.find(match_text)
223
+ {
224
if let Some((_, map)) = resolved.as_ref() {
225
let start = m.start();
226
let end = m.end().min(map.len());
0 commit comments