From 70e76746568674fc343e47dcf275ac9cdc5c1f48 Mon Sep 17 00:00:00 2001 From: lshadler Date: Tue, 3 Aug 2021 22:53:41 -0700 Subject: [PATCH] fix: small tweak --- src/commands/update.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/update.ts b/src/commands/update.ts index bd21469f..45a68996 100644 --- a/src/commands/update.ts +++ b/src/commands/update.ts @@ -13,14 +13,14 @@ import { ls, wait } from '../util'; export default class UpdateCommand extends Command { static description = - 'update the <%= config.bin %> CLI. This will download a new binary'; + 'Updates the <%= config.bin %> CLI. This will check for the latest version available on the requested channel and fetch it from remote'; static args = [ { name: 'channel', // name of arg to show in help and reference with args[name] required: false, // make the arg required with `required: true` description: - 'Specify a prerelease channel. An error will be thrown if this channel is invalid.', // help description + 'Specify a channel (ex: stable,alpha,beta,next). An error will be thrown if this channel is invalid.', // help description }, ];