chore: Fix typos

Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
Awiteb
2025-06-28 10:29:38 +00:00
parent 043ef6fc96
commit 035e22a6ba
3 changed files with 3 additions and 3 deletions

View File

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

View File

@@ -48,7 +48,7 @@ impl CommandRunner for ReopenArgs {
|issue_status| {
if issue_status.is_open() {
return Err(N34Error::InvalidStatus(
"You can't reopen an opened issue".to_owned(),
"You can't reopen an open issue".to_owned(),
));
}

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 opened issue id to resolve it
/// The open issue id to resolve it
issue_id: NostrEvent,
}