From bcf41fd5e7da411b068d6323c12ca5c571bf28e5 Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Thu, 7 May 2020 10:30:14 -0700 Subject: [PATCH] Fix sentence case --- command/pr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/pr.go b/command/pr.go index 7b36089b5..1d3cf704e 100644 --- a/command/pr.go +++ b/command/pr.go @@ -25,7 +25,7 @@ func init() { prCmd.AddCommand(prCloseCmd) prCmd.AddCommand(prReopenCmd) prCmd.AddCommand(prMergeCmd) - prMergeCmd.Flags().BoolP("merge", "m", true, "merge the commits with the base branch") + prMergeCmd.Flags().BoolP("merge", "m", true, "Merge the commits with the base branch") prMergeCmd.Flags().BoolP("rebase", "r", false, "Rebase the commits onto the base branch") prMergeCmd.Flags().BoolP("squash", "s", false, "Squash the commits into one commit and merge it into the base branch")