From 19e5b34d4fb62e4a9a3d5d9c9c1d1cb61cb53e2e Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Fri, 4 Oct 2024 11:16:59 -0600 Subject: [PATCH] fix: remove summary from description --- src/commands/plugins/link.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/commands/plugins/link.ts b/src/commands/plugins/link.ts index 5874633f..10b24781 100644 --- a/src/commands/plugins/link.ts +++ b/src/commands/plugins/link.ts @@ -9,8 +9,7 @@ export default class PluginsLink extends Command { path: Args.string({default: '.', description: 'path to plugin', name: 'path', required: true}), } - static description = `Links a plugin into the CLI for development. -Installation of a linked plugin will override a user-installed or core plugin. + static description = `Installation of a linked plugin will override a user-installed or core plugin. e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello' command will override the user-installed or core plugin implementation. This is useful for development work. `