Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
REVIEW: Don't use future
Lorenz Leutgeb committed 6 months ago
commit 1f4b859e5de7b846d77416f7037ab25864ddb0a8
parent e9a26a08be14de4e8d63d6d9721c5de97978d81a
1 file changed +4 -4
modified crates/radicle-cli/src/commands/patch/args.rs
@@ -723,13 +723,13 @@ impl From<CheckoutArgs> for checkout::Options {
pub(super) struct AssignArgs {
    /// Add an assignee to the patch (may be specified multiple times).
    ///
-
    /// Note: `--add` will take precedence over `--delete`
+
    /// Note: `--add` takes precedence over `--delete`
    #[arg(long, short, value_name = "DID", num_args = 1.., action = clap::ArgAction::Append)]
    pub(super) add: Vec<Did>,

    /// Remove an assignee from the patch (may be specified multiple times).
    ///
-
    /// Note: `--add` will take precedence over `--delete`
+
    /// Note: `--add` takes precedence over `--delete`
    #[clap(long, short, value_name = "DID", num_args = 1.., action = clap::ArgAction::Append)]
    pub(super) delete: Vec<Did>,
}
@@ -739,13 +739,13 @@ pub(super) struct AssignArgs {
pub(super) struct LabelArgs {
    /// Add a label to the patch (may be specified multiple times).
    ///
-
    /// Note: `--add` will take precedence over `--delete`
+
    /// Note: `--add` takes precedence over `--delete`
    #[arg(long, short, value_name = "LABEL", num_args = 1.., action = clap::ArgAction::Append)]
    pub(super) add: Vec<Label>,

    /// Remove a label from the patch (may be specified multiple times).
    ///
-
    /// Note: `--add` will take precedence over `--delete`
+
    /// Note: `--add` takes precedence over `--delete`
    #[clap(long, short, value_name = "LABEL", num_args = 1.., action = clap::ArgAction::Append)]
    pub(super) delete: Vec<Label>,
}