From 2ea12fc9d11d20fd032cf0d7bdafec940f134de1 Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 25 May 2023 08:48:01 +1200 Subject: [PATCH] More help notes on fast and zopfli --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index d848d5ef..4582280a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -182,7 +182,7 @@ fn main() { ) .arg( Arg::new("fast") - .help("Use fast filter evaluation") + .help("Use fast filter evaluation (helpful when you have more filters enabled than CPU cores)") .long("fast") .action(ArgAction::SetTrue), ) @@ -244,7 +244,7 @@ fn main() { ) .arg( Arg::new("zopfli") - .help("Use the slower but better compressing Zopfli algorithm") + .help("Use the slow but stronger Zopfli compressor (recommended use is with all filters and `--fast` enabled)") .short('Z') .long("zopfli") .action(ArgAction::SetTrue),