Explorar o código

fix(fs): updated match indents

xempt %!s(int64=2) %!d(string=hai) anos
pai
achega
58a51d7880
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      src/fs/filter.rs

+ 1 - 0
src/fs/filter.rs

@@ -262,6 +262,7 @@ impl SortField {
             Self::ChangedDate   => a.changed_time().cmp(&b.changed_time()),
             Self::CreatedDate   => a.created_time().cmp(&b.created_time()),
             Self::ModifiedAge   => b.modified_time().cmp(&a.modified_time()),  // flip b and a
+
             Self::FileType => match a.type_char().cmp(&b.type_char()) { // todo: this recomputes
                 Ordering::Equal  => natord::compare(&a.name, &b.name),
                 order            => order,