From 95a8f926abc2e5afc7886400ccd4d92fde83d574 Mon Sep 17 00:00:00 2001 From: ulwlu Date: Sat, 13 Feb 2021 18:10:38 +0900 Subject: [PATCH] Remove unnecessary Sprint --- pkg/cmd/repo/create/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/repo/create/create.go b/pkg/cmd/repo/create/create.go index 42285012d..2aa7834ea 100644 --- a/pkg/cmd/repo/create/create.go +++ b/pkg/cmd/repo/create/create.go @@ -393,7 +393,7 @@ func confirmSubmission(repoName string, repoOwner string, projectDirErr error) ( promptString := "" if projectDirErr == nil { - promptString = fmt.Sprint("This will add remote origin to your current directory. Continue? ") + promptString = "This will add remote origin to your current directory. Continue? " } else if repoOwner != "" { promptString = fmt.Sprintf("This will create '%s/%s' in your current directory. Continue? ", repoOwner, repoName) } else {