Skip to content

Commit

Permalink
chore: (DSO-2004) Update comments descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
javiercm1410 committed Aug 26, 2024
1 parent 2db4134 commit f432af9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/create_comment.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion cmd/get_comment.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion cmd/update_comment.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit f432af9

Please sign in to comment.