From 5d50abd41181e96f80a0be64d52b3be628078e18 Mon Sep 17 00:00:00 2001 From: Michel Jonathan Schmitz Date: Wed, 5 Jun 2019 16:40:07 +0200 Subject: [PATCH] refactor: rename `class` in cli options --- src/cli.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli.ts b/src/cli.ts index 3c48e6a5..ed7dca62 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -182,10 +182,10 @@ commander 'Shows these specific definitions (class, interface or enum)', toArray, ) - .option('--showAssociations', 'Shows associations of classes') + .option('--showAssociations', 'Shows associations of definitions') .option( '--showInheritance', - 'Shows extensions and implementations of classes', + 'Shows extensions and implementations of definitions', ) .option('--showEnumValues', 'Show enum values') .option('--showProperties', 'Show attributes')