From f432af977a118da987a87b14797a30254ff12a5a Mon Sep 17 00:00:00 2001 From: Javier Carrillo Date: Mon, 26 Aug 2024 17:01:04 -0400 Subject: [PATCH] chore: (DSO-2004) Update comments descriptions --- cmd/create_comment.go | 2 +- cmd/get_comment.go | 2 +- cmd/update_comment.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/create_comment.go b/cmd/create_comment.go index 922f794..6221af0 100644 --- a/cmd/create_comment.go +++ b/cmd/create_comment.go @@ -9,7 +9,7 @@ var createCommentPrCmd = &cobra.Command{ Use: "create", Aliases: []string{"new"}, Short: "Create new comment on PR", - Example: "atlas comment create [flags]", + Example: "commenter create [flags]", Run: func(cmd *cobra.Command, args []string) { pull, _ := cmd.Flags().GetInt("pull") repo, _ := cmd.Flags().GetString("repo") diff --git a/cmd/get_comment.go b/cmd/get_comment.go index 53af8dd..91f7491 100644 --- a/cmd/get_comment.go +++ b/cmd/get_comment.go @@ -10,7 +10,7 @@ import ( var getCommentPrCmd = &cobra.Command{ Use: "get", Short: "Get message ID based on text", - Example: "atlas comment get [flags]", + Example: "commenter get [flags]", Run: func(cmd *cobra.Command, args []string) { pull, _ := cmd.Flags().GetInt("pull") repo, _ := cmd.Flags().GetString("repo") diff --git a/cmd/update_comment.go b/cmd/update_comment.go index 645da52..bcacca4 100644 --- a/cmd/update_comment.go +++ b/cmd/update_comment.go @@ -8,7 +8,7 @@ import ( var updateCommentPrCmd = &cobra.Command{ Use: "update", Short: "Update comment on PR", - Example: "atlas comment update [flags]", + Example: "commenter update [flags]", Run: func(cmd *cobra.Command, args []string) { repo, _ := cmd.Flags().GetString("repo") org, _ := cmd.Flags().GetString("org")