From 8168b719fdbd2b7376c55f2824ad690bcbb7eae3 Mon Sep 17 00:00:00 2001 From: xiaoqidun Date: Thu, 10 Mar 2022 14:05:13 +0800 Subject: [PATCH] =?UTF-8?q?style(=E4=BB=A3=E7=A0=81=E9=A3=8E=E6=A0=BC):=20?= =?UTF-8?q?=E8=B0=83=E6=95=B4=E9=A3=8E=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gitcz.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitcz.go b/gitcz.go index ebf8be9..a36b4e0 100644 --- a/gitcz.go +++ b/gitcz.go @@ -236,11 +236,11 @@ func GenerateCommit(czCommit *CzCommit) string { commit += "\n\n" } if czCommit.BreakingChange != nil { - commit += ("BREAKING CHANGE: " + *czCommit.BreakingChange) + commit += "BREAKING CHANGE: " + *czCommit.BreakingChange commit += "\n\n" } if czCommit.Closes != nil { - commit += ("Closes fix " + *czCommit.Closes) + commit += "Closes fix " + *czCommit.Closes } return commit }