Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
REVIEW
Fintan Halpenny committed 6 months ago
commit 5a70ce853f12fe61c5eac27229bd9cd37f14a23f
parent a2c577edc154fe70a82cd19b6a23ba4a29e76e95
1 file changed +14 -14
modified crates/radicle-cli/src/commands/id/args.rs
@@ -123,21 +123,21 @@ pub(super) enum Command {
    /// Accept a proposed revision to the identity document
    #[clap(alias("a"))]
    Accept {
-
        /// REV of the revision to accept
+
        /// Proposed revision to accept
        #[arg(value_name = "REV")]
        revision: Rev,
    },
    /// Reject a proposed revision to the identity document
    #[clap(alias("r"))]
    Reject {
-
        /// REV of the revision to reject
+
        /// Proposed revision to reject
        #[arg(value_name = "REV")]
        revision: Rev,
    },
    /// Edit an existing revision to the identity document
    #[clap(alias("e"))]
    Edit {
-
        /// REV of the edit
+
        /// Proposed revision to edit
        #[arg(value_name = "REV")]
        revision: Rev,

@@ -154,12 +154,12 @@ pub(super) enum Command {
    /// Propose a new revision to the identity document
    #[clap(alias("u"))]
    Update {
-
        /// Set the title for the new revision
+
        /// Set the title for the new proposal
        #[arg(long)]
        #[arg(value_name = "STRING")]
        title: Option<Title>,

-
        /// Set the description for the new revision
+
        /// Set the description for the new proposal
        #[arg(long)]
        #[arg(value_name = "STRING")]
        description: Option<String>,
@@ -170,7 +170,7 @@ pub(super) enum Command {
        #[arg(action = clap::ArgAction::Append)]
        delegate: Vec<Did>,

-
        /// Update the identity by removing a delegate identified by their DID
+
        /// Update the identity by removing a delegate, identified by their DID
        #[arg(long, short)]
        #[arg(value_name = "DID")]
        #[arg(action = clap::ArgAction::Append)]
@@ -181,18 +181,18 @@ pub(super) enum Command {
        #[arg(value_name = "NUM")]
        threshold: Option<usize>,

-
        /// Update the identity by setting the repository visibility to private or public
+
        /// Update the identity by setting the repository's visibility to private or public
        #[arg(long)]
        #[arg(value_name = "VISIBILITY", value_parser = EditVisibilityParser)]
        visibility: Option<EditVisibility>,

-
        /// Update the identity by giving a specific peer access to a private repository
+
        /// Update the identity by giving a specific DID access to a private repository
        #[arg(long)]
        #[arg(value_name = "DID")]
        #[arg(action = clap::ArgAction::Append)]
        allow: Vec<Did>,

-
        /// Update the identity by removing a specific peer’s access to a private repository
+
        /// Update the identity by removing a specific DID's access from a private repository
        #[arg(long)]
        #[arg(value_name = "DID")]
        #[arg(action = clap::ArgAction::Append)]
@@ -213,20 +213,20 @@ pub(super) enum Command {
        #[arg(long)]
        edit: bool,
    },
-
    /// Lists all revisions to the identity document
+
    /// Lists all proposed revisions to the identity document
    #[clap(alias("l"))]
    List,
-
    /// Show a specific revision of the identity documen
+
    /// Show a specific identity proposal
    #[clap(alias("s"))]
    Show {
-
        /// REV of the revision to show
+
        /// Proposed revision to show
        #[arg(value_name = "REV")]
        revision: Rev,
    },
-
    /// Redact an revision
+
    /// Redact a revision
    #[clap(alias("d"))]
    Redact {
-
        /// REV of the revision to redact
+
        /// Proposed revision to redact
        #[arg(value_name = "REV")]
        revision: Rev,
    },