From 39a1eddb9cd1c7066231cc2507bf27df5dc4908f Mon Sep 17 00:00:00 2001 From: Andrew Date: Mon, 22 Sep 2025 20:30:36 +1200 Subject: [PATCH] Tweaks to docs --- src/cli.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index f10d8af3..21132fe6 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -229,9 +229,9 @@ PNG delta filters (apply the same filter to every line) Heuristic strategies (try to find the best delta filter for each line) 5 => MinSum Minimum sum of absolute differences - 6 => Entropy Highest Shannon entropy + 6 => Entropy Smallest Shannon entropy 7 => Bigrams Lowest count of distinct bigrams - 8 => BigEnt Highest Shannon entropy of bigrams + 8 => BigEnt Smallest Shannon entropy of bigrams 9 => Brute Smallest compressed size (slow) The default value depends on the optimization level preset.") @@ -309,7 +309,7 @@ compressed chunks (such as iCCP) will also be disabled. Note that the combinatio .help("Disable checksum validation") .long_help("\ Do not perform checksum validation of PNG chunks. This may allow some files with errors to \ -be processed successfully.") +be processed successfully. The output will always have correct checksums.") .long("fix") .action(ArgAction::SetTrue), )