From 700e951e5e251e511c6b770a3f631fb769162ed4 Mon Sep 17 00:00:00 2001 From: "Wiktor W." Date: Fri, 5 Jan 2024 19:39:20 +0100 Subject: [PATCH] chore: remove unneccessary call to Sprintf --- cli/internal/recipe.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/internal/recipe.go b/cli/internal/recipe.go index ede34464..b3ad37f1 100644 --- a/cli/internal/recipe.go +++ b/cli/internal/recipe.go @@ -40,7 +40,7 @@ Here is a semver cheat sheet (more on https://semver.org): var chosenBumpType string prompt := &survey.Select{ - Message: fmt.Sprintf("select recipe version increment type"), + Message: "select recipe version increment type", Options: []string{"major", "minor", "patch"}, }