use 'let/else' syntax (clippy::manual_let_else)

This commit is contained in:
Daniel Eades 2024-04-15 20:47:12 +01:00 committed by Jeremy Soller
parent 76d166b266
commit 34cf7bf76a
2 changed files with 4 additions and 6 deletions

View file

@ -437,9 +437,8 @@ impl Terminal {
}
}
let search_regex = match &mut self.search_regex_opt {
Some(some) => some,
None => return,
let Some(search_regex) = &mut self.search_regex_opt else {
return;
};
// Determine search origin