Fix keygen docs

Thanks @rob-solana
This commit is contained in:
Greg Fitzgerald 2018-07-12 17:29:10 -06:00 committed by Greg Fitzgerald
parent 545f4f1c87
commit f06a8dceda
1 changed files with 2 additions and 2 deletions

View File

@ -12,14 +12,14 @@ use std::io::Write;
use std::path::Path;
fn main() -> Result<(), Box<error::Error>> {
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();