summaryrefslogtreecommitdiffstats
path: root/crates/core/tedge/src/command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/core/tedge/src/command.rs')
-rw-r--r--crates/core/tedge/src/command.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/core/tedge/src/command.rs b/crates/core/tedge/src/command.rs
index 6637d0da..0ad255f5 100644
--- a/crates/core/tedge/src/command.rs
+++ b/crates/core/tedge/src/command.rs
@@ -115,7 +115,7 @@ pub trait Command {
/// In practice, an implementation will also derives the `Structopt` trait.
///
/// ```
-/// #[derive(StructOpt, Debug)]
+/// #[derive(clap::Parser, Debug)]
/// enum ConfigCmd {
/// /// Add new value (overwrite the value if the key exists).
/// Set { key: String, value: String },