diff --git a/src/bin/keygen.rs b/src/bin/keygen.rs index 9b65c0d881..e77614d78a 100644 --- a/src/bin/keygen.rs +++ b/src/bin/keygen.rs @@ -12,14 +12,14 @@ use std::io::Write; use std::path::Path; fn main() -> Result<(), Box> { - let matches = App::new("solana-genesis") + let matches = App::new("solana-keygen") .arg( Arg::with_name("outfile") .short("o") .long("outfile") .value_name("PATH") .takes_value(true) - .help("Number of tokens with which to initialize mint"), + .help("path to generated file"), ) .get_matches();