Fix the "team create" command wrongly shows a `teams create` example, where an extra "s" is appended to the command name.
Этот коммит содержится в:
Ema Panz
2017-10-18 22:22:51 +02:00
коммит произвёл Chris
родитель 7409d9f217
Коммит 897d83fdf9

Просмотреть файл

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