From 7eb7773bdc91f0ea6d93379867bed6f11caec28b Mon Sep 17 00:00:00 2001 From: Ben Beasley Date: Wed, 21 Feb 2024 00:11:51 -0500 Subject: [PATCH] Adjust the binary name in the cramjam-cli example (#138) By default, and as published on PyPI, the cramjam-cli binary is called cramjam-cli rather than cramjam. --- cramjam-cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cramjam-cli/src/main.rs b/cramjam-cli/src/main.rs index 1c53dff5..30a906f1 100644 --- a/cramjam-cli/src/main.rs +++ b/cramjam-cli/src/main.rs @@ -9,7 +9,7 @@ use clap::{Args, Parser, Subcommand, ValueEnum}; #[derive(Clone, Parser)] #[command(author, version, about)] -#[command(after_long_help = "Example: cramjam snappy compress --input myfile.txt --output out.txt.snappy")] +#[command(after_long_help = "Example: cramjam-cli snappy compress --input myfile.txt --output out.txt.snappy")] struct Cli { #[command(subcommand)] codec: Codec,