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.
This commit is contained in:
Ema Panz
2017-10-18 22:22:51 +02:00
committed by Chris
parent 7409d9f217
commit 897d83fdf9

View File

@@ -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,
}