Make command descriptions consistent

Signed-off-by: Mathieu Champlon <mathieu.champlon@docker.com>
This commit is contained in:
Mathieu Champlon 2021-10-04 06:43:30 +02:00 committed by Nicolas De loof
parent fdb90ca179
commit 98fe57baac
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ func pauseCommand(p *projectOptions, backend api.Service) *cobra.Command {
}
cmd := &cobra.Command{
Use: "pause [SERVICE...]",
Short: "pause services",
Short: "Pause services",
RunE: Adapt(func(ctx context.Context, args []string) error {
return runPause(ctx, backend, opts, args)
}),
@ -64,7 +64,7 @@ func unpauseCommand(p *projectOptions, backend api.Service) *cobra.Command {
}
cmd := &cobra.Command{
Use: "unpause [SERVICE...]",
Short: "unpause services",
Short: "Unpause services",
RunE: Adapt(func(ctx context.Context, args []string) error {
return runUnPause(ctx, backend, opts, args)
}),