diff --git a/examples/tutorial_builder/01_quick.rs b/examples/tutorial_builder/01_quick.rs index 328ce551991..dc1beb789fe 100644 --- a/examples/tutorial_builder/01_quick.rs +++ b/examples/tutorial_builder/01_quick.rs @@ -36,7 +36,7 @@ fn main() { // Note, only flags can have multiple occurrences match matches .get_one::("debug") - .expect("Count's are defaulted") + .expect("Counts are defaulted") { 0 => println!("Debug mode is off"), 1 => println!("Debug mode is kind of on"),