From 1182f63498c856111762e2766d6cdddf063f2a97 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Wed, 29 Dec 2021 22:12:48 -0500 Subject: misc improvements --- src/commands/dev/__template.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/commands/dev') diff --git a/src/commands/dev/__template.ts b/src/commands/dev/__template.ts index 11d9649..6adba08 100644 --- a/src/commands/dev/__template.ts +++ b/src/commands/dev/__template.ts @@ -11,16 +11,16 @@ export default class TemplateCommand extends BushCommand { args: [ { id: 'required_argument', - type: 'string', description: 'This is the first argument.', + type: 'string', prompt: 'What would you like to set your first argument to be?', retry: '{error} Pick a valid argument.', slashType: 'STRING' }, { id: 'optional_argument', - type: 'string', description: 'This is the second argument.', + type: 'string', prompt: 'What would you like to set your second argument to be?', retry: '{error} Pick a valid argument.', optional: true, -- cgit