clippy nightly fixes

This commit is contained in:
extrawurst 2022-12-30 09:42:50 +01:00
parent e5c62d01e1
commit c6dec379f2
2 changed files with 4 additions and 4 deletions

View file

@ -48,8 +48,8 @@ fn sort_file_list(files: &mut [TreeFile]) {
// applies topologically order on paths sorting
fn path_cmp(a: &Path, b: &Path) -> Ordering {
let mut comp_a = a.components().into_iter().peekable();
let mut comp_b = b.components().into_iter().peekable();
let mut comp_a = a.components().peekable();
let mut comp_b = b.components().peekable();
loop {
let a = comp_a.next();

View file

@ -128,9 +128,9 @@ impl Stashing {
Spans::from(vec![
bracket_open,
if self.options.keep_index {
option_on.clone()
option_on
} else {
option_off.clone()
option_off
},
bracket_close,
Span::raw(Cow::from(" keep index")),