aboutsummaryrefslogtreecommitdiff
path: root/examples/example-clap-binding/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example-clap-binding/src/main.rs')
-rw-r--r--examples/example-clap-binding/src/main.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/example-clap-binding/src/main.rs b/examples/example-clap-binding/src/main.rs
index aed437d..d3ad573 100644
--- a/examples/example-clap-binding/src/main.rs
+++ b/examples/example-clap-binding/src/main.rs
@@ -71,9 +71,9 @@ fn main() {
// vvvvvvv vvvvvvvvvvvv vvvvvvvv
#[derive(Default, clap::Parser, Groupped)]
#[dispatcher_clap(
- "greet", CMDGreet, // Bind EntryGreet to "greet" command
- help = true, // Generate clap help for EntryGreet
- error = ErrorGreetParsed // Generate and bind error type for parse failure
+ "greet", CMDGreet, // Bind EntryGreet to "greet" command
+ help = true, // Generate clap help for EntryGreet
+ error = ErrorGreetParsed, // Generate and bind error type for parse failure
// ^^^^^\__ Using `error` intercepts parse failure information into the specified type,
// which is then rendered by the renderer
)]