Skip to content

Commit 5a42edc

Browse files
avoid using the word "cluster" in cli helptext
1 parent 552fcc3 commit 5a42edc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cmd/cli/command/commands.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ var RootCmd = &cobra.Command{
386386
var loginCmd = &cobra.Command{
387387
Use: "login",
388388
Args: cobra.NoArgs,
389-
Short: "Authenticate to the Defang cluster",
389+
Short: "Authenticate to Defang",
390390
RunE: func(cmd *cobra.Command, args []string) error {
391391
if nonInteractive {
392392
if err := cli.NonInteractiveLogin(cmd.Context(), client, cluster); err != nil {
@@ -641,7 +641,7 @@ var getServicesCmd = &cobra.Command{
641641
Annotations: authNeededAnnotation,
642642
Args: cobra.NoArgs,
643643
Aliases: []string{"getServices", "ls", "list"},
644-
Short: "Get list of services on the cluster",
644+
Short: "Get list of services in the project",
645645
RunE: func(cmd *cobra.Command, args []string) error {
646646
long, _ := cmd.Flags().GetBool("long")
647647

0 commit comments

Comments
 (0)