From cfba3edaabe71cbb7046e9ab7e30798300563031 Mon Sep 17 00:00:00 2001 From: Phil Renaud Date: Tue, 22 Oct 2024 16:02:20 -0400 Subject: [PATCH] Fixed an error in job tag unset help text (#24272) --- .changelog/24272.txt | 3 +++ command/job_tag_unset.go | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .changelog/24272.txt diff --git a/.changelog/24272.txt b/.changelog/24272.txt new file mode 100644 index 000000000..6c2cdd0d3 --- /dev/null +++ b/.changelog/24272.txt @@ -0,0 +1,3 @@ +```release-note:bug +cli: Corrected an ordering mistake in job tag unset help text +``` diff --git a/command/job_tag_unset.go b/command/job_tag_unset.go index 21c841f88..6364b59ba 100644 --- a/command/job_tag_unset.go +++ b/command/job_tag_unset.go @@ -16,7 +16,7 @@ type JobTagUnsetCommand struct { func (c *JobTagUnsetCommand) Help() string { helpText := ` -Usage: nomad job tag unset [options] -name +Usage: nomad job tag unset [options] -name Remove a tag from a job version. This command requires a job ID and a tag name.