From ea58a682ccccc00f410a7b76531836cec96f1703 Mon Sep 17 00:00:00 2001 From: Steven Martin Date: Tue, 3 Dec 2024 06:11:57 -0500 Subject: [PATCH] update tctl bots descriptions (#49682) --- tool/tctl/common/bots_command.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tool/tctl/common/bots_command.go b/tool/tctl/common/bots_command.go index 1cca70353894d..306969eec1f26 100644 --- a/tool/tctl/common/bots_command.go +++ b/tool/tctl/common/bots_command.go @@ -114,10 +114,10 @@ func (c *BotsCommand) Initialize(app *kingpin.Application, config *servicecfg.Co c.botsInstances = bots.Command("instances", "Manage bot instances.").Alias("instance") - c.botsInstancesShow = c.botsInstances.Command("show", "Shows information about a specific bot instance").Alias("get").Alias("describe") + c.botsInstancesShow = c.botsInstances.Command("show", "Shows information about a specific bot instance.").Alias("get").Alias("describe") c.botsInstancesShow.Arg("id", "The full ID of the bot instance, in the form of [bot name]/[uuid]").Required().StringVar(&c.instanceID) - c.botsInstancesList = c.botsInstances.Command("list", "List bot instances").Alias("ls") + c.botsInstancesList = c.botsInstances.Command("list", "List bot instances.").Alias("ls") c.botsInstancesList.Arg("name", "The name of the bot from which to list instances. If unset, lists instances from all bots.").StringVar(&c.botName) c.botsInstancesAdd = c.botsInstances.Command("add", "Join a new instance onto an existing bot.").Alias("join")