From c4a9fb9da93596bf15b42fbb644e3b3bd59ba1f2 Mon Sep 17 00:00:00 2001 From: Simon G Date: Sat, 18 Dec 2021 23:41:46 +0100 Subject: [PATCH] fix(arguments): typo in category describtion --- src/yargs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yargs.ts b/src/yargs.ts index 581b678..3e3b210 100644 --- a/src/yargs.ts +++ b/src/yargs.ts @@ -11,7 +11,7 @@ export const argv = yargs(process.argv.slice(2)) category: { alias: 'c', choices: Array.from(CATEGORIES.keys()), - describe: 'category of the Homeit accessory', + describe: 'category of the HomeKit accessory', demandOption: true, type: 'string', },