From cc7b2f0ea8b3269a8dabcc63caf5ce163ed598c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Wed, 11 Dec 2019 09:31:57 +0100 Subject: [PATCH] Consistently use "pull request" instead of "PR" in user-facing copy --- command/pr_create.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/command/pr_create.go b/command/pr_create.go index bd4beaab4..3710f8235 100644 --- a/command/pr_create.go +++ b/command/pr_create.go @@ -118,7 +118,7 @@ func prCreate(cmd *cobra.Command, _ []string) error { pr, err := api.CreatePullRequest(client, repo, params) if err != nil { - return errors.Wrap(err, "failed to create PR") + return errors.Wrap(err, "failed to create pull request") } fmt.Fprintln(cmd.OutOrStdout(), pr.URL) @@ -162,7 +162,7 @@ var prCreateCmd = &cobra.Command{ func init() { prCreateCmd.Flags().BoolP("draft", "d", false, - "Mark PR as a draft") + "Mark pull request as a draft") prCreateCmd.Flags().StringP("title", "t", "", "Supply a title. Will prompt for one otherwise.") prCreateCmd.Flags().StringP("body", "b", "",