From b1b41c5fbae5ff3440238a96e7d8402b146ceaf8 Mon Sep 17 00:00:00 2001 From: tomf Date: Wed, 25 Oct 2023 05:30:13 +1100 Subject: [PATCH] Change "push -i" prompt text from "Y/n" to "y/N" to match reality (#2605) --- pkg/printer/printer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/printer/printer.go b/pkg/printer/printer.go index f23fd9100..da839ab66 100644 --- a/pkg/printer/printer.go +++ b/pkg/printer/printer.go @@ -97,7 +97,7 @@ func (c ConsolePrinter) PrintReport(i int, correction *models.Correction) { // PromptToRun prompts the user to see if they want to execute a correction. func (c ConsolePrinter) PromptToRun() bool { - fmt.Fprint(c.Writer, "Run? (Y/n): ") + fmt.Fprint(c.Writer, "Run? (y/N): ") txt, err := c.Reader.ReadString('\n') run := true if err != nil {