From cd30a71c1ae9126a7a960499d2da40c5bc424622 Mon Sep 17 00:00:00 2001 From: Oscar <5xp395ab@duck.com> Date: Mon, 9 Oct 2023 09:53:17 +0000 Subject: [PATCH] docs(rust): remove leftover doc comment --- implementations/rust/ockam/ockam_command/src/relay/list.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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, }