Skip to content

Commit a03a070

Browse files
authored
chore: refine the command descriptions (#1297)
1 parent 199fcbd commit a03a070

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pkg/cmd/project/list/cmd.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ func NewCmd() *cobra.Command {
2626
2727
# List the applied project in a specified backend and specified workspaces
2828
kusion project list --backend default --workspace dev,default
29+
2930
# List the applied project in a specified backend and all the workspaces
3031
kusion project list --backend default --all`)
3132
)

pkg/cmd/release/release.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ import (
99
)
1010

1111
var relLong = i18n.T(`
12-
Commands for managing Kusion release files.
12+
Commands for observing and operating Kusion release files.
1313
14-
These commands help you manage the lifecycle of Kusion release files. `)
14+
These commands help you observe and operate the Kusion release files of a Project in a Workspace. `)
1515

1616
// NewCmdRel returns an initialized Command instance for 'release' sub command.
1717
func NewCmdRel(streams genericiooptions.IOStreams) *cobra.Command {
1818
cmd := &cobra.Command{
1919
Use: "release",
2020
DisableFlagsInUseLine: true,
21-
Short: "Manage Kusion release files",
21+
Short: "Observe and operate Kusion release files",
2222
Long: templates.LongDesc(relLong),
2323
Run: cmdutil.DefaultSubCommandRun(streams.ErrOut),
2424
}

0 commit comments

Comments
 (0)