From 5a0eaee64ced9cbcd930fa34df3ab17af3e29f13 Mon Sep 17 00:00:00 2001 From: Florian Klein Date: Fri, 19 Jun 2026 10:23:38 +0200 Subject: [PATCH] Fix typo in CLI help "public" and "private" where inverted Signed-off-by: Florian Klein --- src/cli.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index 88aa0d0..2624ec0 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -80,10 +80,10 @@ pub struct KeyPairCmd { /// Public and private key output format #[clap(long, value_enum, default_value_t)] pub key_output_format: KeyFormat, - /// Only output the private key + /// Only output the public key #[clap(long, conflicts_with("only-private-key"))] pub only_public_key: bool, - /// Only output the public key + /// Only output the private key #[clap(long, conflicts_with("only-public-key"))] pub only_private_key: bool, }