From 98fe57baac6ec76e8e62b5181d9309c7a80e0694 Mon Sep 17 00:00:00 2001 From: Mathieu Champlon Date: Mon, 4 Oct 2021 06:43:30 +0200 Subject: [PATCH] Make command descriptions consistent Signed-off-by: Mathieu Champlon --- cmd/compose/pause.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/compose/pause.go b/cmd/compose/pause.go index fef6a0f3f..f51f47c7a 100644 --- a/cmd/compose/pause.go +++ b/cmd/compose/pause.go @@ -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) }),