chore: remove unneccessary call to Sprintf

This commit is contained in:
Wiktor W. 2024-01-05 19:39:20 +01:00
parent 0c4d5b2e69
commit 700e951e5e
1 changed files with 1 additions and 1 deletions

View File

@ -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"},
}