From 3c30c416433a7d0a41650ae942e6610442660efa Mon Sep 17 00:00:00 2001 From: "Kevin K." Date: Wed, 18 Mar 2015 12:54:31 -0400 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a1cfe322..7c925e82 100644 --- a/README.md +++ b/README.md @@ -38,8 +38,8 @@ fn main() { .subcommand(SubCommand::new("test") .about("controls testing features") .arg(Arg::new("verbose") - .short("v") - .help("print test information verbosely"))) + .short("v") + .help("print test information verbosely"))) .get_matches(); if let Some(o) = matches.value_of("output") { @@ -58,10 +58,10 @@ fn main() { } if let Some(ref matches) = matches.subcommand_matches("test") { - if matches.is_present("list") { - println!("Printing testing lists..."); + if matches.is_present("verbose") { + println!("Printing verbosely..."); } else { - println!("Not printing testing lists..."); + println!("Printing normally..."); } }