summaryrefslogtreecommitdiffstats
path: root/vendor/clap/examples/find.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/clap/examples/find.rs')
-rw-r--r--vendor/clap/examples/find.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/clap/examples/find.rs b/vendor/clap/examples/find.rs
index e073e702d..0b7f2c700 100644
--- a/vendor/clap/examples/find.rs
+++ b/vendor/clap/examples/find.rs
@@ -5,7 +5,7 @@ use clap::{arg, command, ArgGroup, ArgMatches, Command};
fn main() {
let matches = cli().get_matches();
let values = Value::from_matches(&matches);
- println!("{:#?}", values);
+ println!("{values:#?}");
}
fn cli() -> Command {
@@ -51,7 +51,7 @@ impl Value {
if Self::extract::<bool>(matches, id, &mut values) {
continue;
}
- unimplemented!("unknown type for {}: {:?}", id, matches);
+ unimplemented!("unknown type for {id}: {matches:?}");
}
values.into_values().collect::<Vec<_>>()
}