From 2fae8fe4c92bd7714188bece92a9d75b5c77df0e Mon Sep 17 00:00:00 2001 From: Joe Date: Mon, 22 Apr 2024 12:20:23 -0500 Subject: [PATCH] Pretty sure that apostrophe does not belong --- examples/tutorial_builder/01_quick.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"),