diff --git a/internal/cmd/commands/hostscmd/static_funcs.go b/internal/cmd/commands/hostscmd/static_funcs.go index 0ccc51c751..08f5c392f0 100644 --- a/internal/cmd/commands/hostscmd/static_funcs.go +++ b/internal/cmd/commands/hostscmd/static_funcs.go @@ -27,11 +27,11 @@ func (c *StaticCommand) extraStaticHelpFunc(helpMap map[string]func() string) st switch c.Func { case "create": helpStr = base.WrapForHelpText([]string{ - "Usage: boundary hosts static create [options] [args]", + "Usage: boundary hosts create static [options] [args]", "", " Create a static-type host. Example:", "", - ` $ boundary hosts static create -name prodops -description "Static host for ProdOps" -address "127.0.0.1"`, + ` $ boundary hosts create static -name prodops -description "Static host for ProdOps" -address "127.0.0.1"`, "", "", }) diff --git a/internal/cmd/commands/targetscmd/tcp_funcs.go b/internal/cmd/commands/targetscmd/tcp_funcs.go index acd80654e2..8782b0b9d7 100644 --- a/internal/cmd/commands/targetscmd/tcp_funcs.go +++ b/internal/cmd/commands/targetscmd/tcp_funcs.go @@ -46,11 +46,11 @@ func (c *TcpCommand) extraTcpHelpFunc(helpMap map[string]func() string) string { case "update": helpStr = base.WrapForHelpText([]string{ - "Usage: boundary targets tcp update [options] [args]", + "Usage: boundary targets update tcp [options] [args]", "", " Update a tcp-type target given its ID. Example:", "", - ` $ boundary targets tcp update -id ttcp_1234567890 -name "devops" -description "Tcp target for DevOps"`, + ` $ boundary targets update tcp -id ttcp_1234567890 -name "devops" -description "Tcp target for DevOps"`, "", "", })