From e2012c18dcec45cf483e2e173319620c9f1961f3 Mon Sep 17 00:00:00 2001 From: Michael Hoffmann Date: Mon, 4 Sep 2023 08:41:00 -0600 Subject: [PATCH] Removed "(default: false)" from the --additional-properties option because the default parameter given already appends that to the help text. --- ts-json-schema-generator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts-json-schema-generator.ts b/ts-json-schema-generator.ts index 2511c73f3..6118d5083 100644 --- a/ts-json-schema-generator.ts +++ b/ts-json-schema-generator.ts @@ -36,7 +36,7 @@ const args = new Command() ) .option( "--additional-properties", - "Allow additional properties for objects with no index signature (default: false)", + "Allow additional properties for objects with no index signature", false ) .version(pkg.version)