From 6eab3751d05528bd94c9679d10baed495ae468c7 Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Mon, 18 May 2020 14:39:43 -0700 Subject: [PATCH] Update command/pr.go Co-authored-by: Billy Griffin <5091167+billygriffin@users.noreply.github.com> --- command/pr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/pr.go b/command/pr.go index de85878d6..cf3eaa8f7 100644 --- a/command/pr.go +++ b/command/pr.go @@ -595,7 +595,7 @@ func prReady(cmd *cobra.Command, args []string) error { err := fmt.Errorf("%s Pull request #%d is closed. Only draft pull requests can be marked as \"ready for review\"", utils.Red("!"), pr.Number) return err } else if !pr.IsDraft { - fmt.Fprintf(colorableErr(cmd), "%s Pull request #%d was already marked as \"ready for review\"\n", utils.Yellow("!"), pr.Number) + fmt.Fprintf(colorableErr(cmd), "%s Pull request #%d is already \"ready for review\"\n", utils.Yellow("!"), pr.Number) return nil }