From d601abaee00d5a387e93917e1ba70e9893a34734 Mon Sep 17 00:00:00 2001 From: Mussar <67082011+0x4D5352@users.noreply.github.com> Date: Mon, 14 Apr 2025 15:28:16 -0500 Subject: [PATCH] chore: move 'job' to experimental category (#15568) # Description The 'job' command was incorrectly placed into the "Strings" category rather than the "Experimental" category like its subcommands. This PR resolves that issues. # User-Facing Changes Changes to where the `job` command is found when using the `help` command or reading the documentation. --- crates/nu-command/src/experimental/job.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/experimental/job.rs b/crates/nu-command/src/experimental/job.rs index 14d9ad4cb1..adce076589 100644 --- a/crates/nu-command/src/experimental/job.rs +++ b/crates/nu-command/src/experimental/job.rs @@ -10,7 +10,7 @@ impl Command for Job { fn signature(&self) -> Signature { Signature::build("job") - .category(Category::Strings) + .category(Category::Experimental) .input_output_types(vec![(Type::Nothing, Type::String)]) }