summaryrefslogtreecommitdiffstats
path: root/cmd/platform
diff options
context:
space:
mode:
authorEma Panz <thePanz@users.noreply.github.com>2017-10-18 22:22:51 +0200
committerChris <ccbrown112@gmail.com>2017-10-18 13:22:51 -0700
commit897d83fdf9cd256aad58e2f54ab12cab4210fe12 (patch)
tree9d6a906edbaafe616e1716bb84a1022a9b3e1b90 /cmd/platform
parent7409d9f2174e842b1d51343a18478294ae455f0d (diff)
downloadchat-897d83fdf9cd256aad58e2f54ab12cab4210fe12.tar.gz
chat-897d83fdf9cd256aad58e2f54ab12cab4210fe12.tar.bz2
chat-897d83fdf9cd256aad58e2f54ab12cab4210fe12.zip
Fix teams create example (#7655)
Fix the "team create" command wrongly shows a `teams create` example, where an extra "s" is appended to the command name.
Diffstat (limited to 'cmd/platform')
-rw-r--r--cmd/platform/team.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/platform/team.go b/cmd/platform/team.go
index c19f40152..f35a97c82 100644
--- a/cmd/platform/team.go
+++ b/cmd/platform/team.go
@@ -21,7 +21,7 @@ var teamCreateCmd = &cobra.Command{
Short: "Create a team",
Long: `Create a team.`,
Example: ` team create --name mynewteam --display_name "My New Team"
- teams create --name private --display_name "My New Private Team" --private`,
+ team create --name private --display_name "My New Private Team" --private`,
RunE: createTeamCmdF,
}