From 9b9aefc9a595d00b0dbcb7e85533c166699356ea Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Fri, 6 Mar 2026 06:20:36 +0100 Subject: [PATCH] Fix usageTable command help text for header option --- src/cli/commands/table.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli/commands/table.ts b/src/cli/commands/table.ts index 3a7340a..2453159 100644 --- a/src/cli/commands/table.ts +++ b/src/cli/commands/table.ts @@ -3,10 +3,10 @@ import { readJsonFromStdin } from "../utils.ts"; export function usageTable(): string { - return `Usage: sk-az-tools table [--header|-H ] [global options] + return `Usage: sk-az-tools table [--header|-H ] [global options] Options: - -H, --header Header mode/spec: auto|a (default), original|o, OR "col1, col2" OR "key1: Label 1, key2: Label 2"`; + -H, --header Header mode: auto|a (default), original|o, or "col1, col2" or "key1: Label 1, key2: Label 2"`; } export async function runTableCommand(): Promise {