From 7875e15090e3839b1006e80c65ed2a64d007a6ae Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Tue, 20 Feb 2024 09:01:07 -0500 Subject: [PATCH] Adjust the binary name in the cramjam-cli example 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,