docs: Fix status command docs

Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
Awiteb
2025-08-02 09:14:21 +00:00
parent bd3ba1bdbf
commit 78113c7402
5 changed files with 5 additions and 7 deletions

View File

@@ -54,7 +54,7 @@ pub enum IssueSubcommands {
Reopen(ReopenArgs),
/// Closes an open issue.
Close(CloseArgs),
/// Resolves an open issue.
/// Resolves an issue.
Resolve(ResolveArgs),
/// List the repositories issues.
List(ListArgs),

View File

@@ -34,7 +34,7 @@ pub struct ResolveArgs {
/// If omitted, looks for a `nostr-address` file.
#[arg(value_name = "NADDR-NIP05-OR-SET", long = "repo")]
naddrs: Option<Vec<NaddrOrSet>>,
/// The open issue id to resolve it
/// The issue id to resolve it
issue_id: NostrEvent,
}