From e61b216b4fd12d96cdc509b3af63783419771eb0 Mon Sep 17 00:00:00 2001 From: Amanda Pinsker Date: Mon, 10 Feb 2020 16:15:02 -0800 Subject: [PATCH] Make approval statuses sentence case --- command/pr.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/command/pr.go b/command/pr.go index 38ee25c4e..dbef0f714 100644 --- a/command/pr.go +++ b/command/pr.go @@ -400,11 +400,11 @@ func printPrs(w io.Writer, totalCount int, prs ...api.PullRequest) { } if reviews.ChangesRequested { - fmt.Fprintf(w, " - %s", utils.Red("changes requested")) + fmt.Fprintf(w, " - %s", utils.Red("Changes requested")) } else if reviews.ReviewRequired { - fmt.Fprintf(w, " - %s", utils.Yellow("review required")) + fmt.Fprintf(w, " - %s", utils.Yellow("Review required")) } else if reviews.Approved { - fmt.Fprintf(w, " - %s", utils.Green("approved")) + fmt.Fprintf(w, " - %s", utils.Green("Approved")) } fmt.Fprint(w, "\n")