Skip to content

Commit

Permalink
Make command descriptions consistent
Browse files Browse the repository at this point in the history
Signed-off-by: Mathieu Champlon <[email protected]>
  • Loading branch information
mat007 authored and ndeloof committed Oct 4, 2021
1 parent fdb90ca commit 98fe57b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/compose/pause.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}),
Expand Down Expand Up @@ -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)
}),
Expand Down

0 comments on commit 98fe57b

Please sign in to comment.