Skip to content

Commit

Permalink
docs(rust): remove leftover doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
0scvr committed Oct 9, 2023
1 parent ac1fab6 commit cd30a71
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions implementations/rust/ockam/ockam_command/src/relay/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 <NODE>' then it lists the Relays at the given node
#[derive(Clone, Debug, Args)]
#[command(
arg_required_else_help = false,
Expand All @@ -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<String>,
}
Expand Down

0 comments on commit cd30a71

Please sign in to comment.