From b500ac57c276b011d28565020bad134886c843e8 Mon Sep 17 00:00:00 2001 From: Doru Date: Thu, 1 May 2025 08:19:32 -0300 Subject: [PATCH] Update job_recv.rs (#15673) remove j # Description # User-Facing Changes # Tests + Formatting # After Submitting --- crates/nu-command/src/experimental/job_recv.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/experimental/job_recv.rs b/crates/nu-command/src/experimental/job_recv.rs index a19a298620..76a8dde2b3 100644 --- a/crates/nu-command/src/experimental/job_recv.rs +++ b/crates/nu-command/src/experimental/job_recv.rs @@ -27,7 +27,7 @@ impl Command for JobRecv { fn extra_description(&self) -> &str { r#"When messages are sent to the current process, they get stored in what is called the "mailbox". This commands reads and returns a message from the mailbox, in a first-in-first-out fashion. -j + Messages may have numeric flags attached to them. This commands supports filtering out messages that do not satisfy a given tag, by using the `tag` flag. If no tag is specified, this command will accept any message.