Fixed spelling error in instance command (#438)

This commit is contained in:
David Baucum 2019-01-28 18:09:59 -05:00 committed by Igor Galić
parent 5880dc1957
commit 8696185d1e
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ pub fn run<'a>(args: &ArgMatches<'a>, conn: &Connection) {
let conn = conn; let conn = conn;
match args.subcommand() { match args.subcommand() {
("new", Some(x)) => new(x, conn), ("new", Some(x)) => new(x, conn),
_ => println!("Unknwon subcommand"), _ => println!("Unknown subcommand"),
} }
} }