diff --git a/implementations/rust/ockam/ockam_command/src/relay/list.rs b/implementations/rust/ockam/ockam_command/src/relay/list.rs index 74c0073547e..82d019e4925 100644 --- a/implementations/rust/ockam/ockam_command/src/relay/list.rs +++ b/implementations/rust/ockam/ockam_command/src/relay/list.rs @@ -22,8 +22,6 @@ const LONG_ABOUT: &str = include_str!("./static/list/long_about.txt"); const AFTER_LONG_HELP: &str = include_str!("./static/list/after_long_help.txt"); /// List Relays -/// -/// List Relays on your default node. If you pass '--to ' then it lists the Relays at the given node #[derive(Clone, Debug, Args)] #[command( arg_required_else_help = false, @@ -32,7 +30,7 @@ const AFTER_LONG_HELP: &str = include_str!("./static/list/after_long_help.txt"); after_long_help = docs::after_help(AFTER_LONG_HELP) )] pub struct ListCommand { - /// Get the list of Relays at the given node + /// Get the list of Relays at the given node #[arg(global = true, long, value_name = "NODE")] pub to: Option, }