From d162ca98ef09313f1c5d884c3481b5ac20e23759 Mon Sep 17 00:00:00 2001 From: Valentin Bersier Date: Wed, 18 Jan 2023 15:34:58 +0100 Subject: [PATCH] docs: comment --- src/output.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/output.rs b/src/output.rs index 0b33787..188a51e 100644 --- a/src/output.rs +++ b/src/output.rs @@ -130,7 +130,7 @@ pub fn interactive(duplicates: DashMap>, opts: &Params) { .into_iter() .sorted_unstable_by_key(|f| { -(f.1.first().and_then(|ff| ff.size).unwrap_or_default() as i64) - }) + }) // sort by descending file size in interactive mode .enumerate() .for_each(|(gindex, (_, group))| { let mut itable = Table::new();