Skip to content

Commit

Permalink
update tctl bots descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenGravy committed Dec 3, 2024
1 parent c135d34 commit a15cb85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tool/tctl/common/bots_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit a15cb85

Please sign in to comment.