diff options
author | genny <gen@nyble.dev> | 2024-06-20 06:38:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-20 06:38:54 -0500 |
commit | 0f62ba8775e975e340c9422524ac3f9e3c1bb5bd (patch) | |
tree | a236a260a71f929c675409d2551ddf439262cc69 /squash/src/cli.rs | |
parent | 5a0e9ec5fb15e7e015249623540fc26c1984d5e2 (diff) | |
download | colorsquash-0f62ba8775e975e340c9422524ac3f9e3c1bb5bd.tar.gz colorsquash-0f62ba8775e975e340c9422524ac3f9e3c1bb5bd.zip |
Fix help=selectors formatting
Diffstat (limited to 'squash/src/cli.rs')
-rw-r--r-- | squash/src/cli.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/squash/src/cli.rs b/squash/src/cli.rs index 96a0798..54be4c5 100644 --- a/squash/src/cli.rs +++ b/squash/src/cli.rs @@ -265,7 +265,7 @@ fn print_help_selectors() -> ! { println!(" sufficiently different (configurable with tolerance=)\n"); println!("kmeans:"); println!(" uses the kmeans clustering algorithm to select colours."); - println!(" Ignores tolerance="); + println!(" Ignores tolerance=\n"); println!("highest-bits:"); println!(" quantizes the colours by shifting the bits of their components until"); println!(" they all fit in the palette."); |