Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down
Loading