Merge pull request #233 from kbknapp/readme

chore: fixes spelling in readme
This commit is contained in:
Kevin K. 2015-09-07 11:20:38 -04:00
commit f9144c978b

View file

@ -244,7 +244,7 @@ use clap::App;
fn main() {
// The YAML file is found relative to the current file, similar to how modules are found
let yaml = load_yaml!("cli.yml");
let matches = App::from_yaml(yaml).get_mathes();
let matches = App::from_yaml(yaml).get_matches();
// Calling .unwrap() is safe here because "INPUT" is required (if "INPUT" wasn't
// required we could have used an 'if let' to conditionally get the value)