style(代码风格): 调整风格
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
xiaoqidun 2022-03-10 14:05:13 +08:00
parent d36f61bc80
commit 8168b719fd

View File

@ -236,11 +236,11 @@ func GenerateCommit(czCommit *CzCommit) string {
commit += "\n\n" commit += "\n\n"
} }
if czCommit.BreakingChange != nil { if czCommit.BreakingChange != nil {
commit += ("BREAKING CHANGE: " + *czCommit.BreakingChange) commit += "BREAKING CHANGE: " + *czCommit.BreakingChange
commit += "\n\n" commit += "\n\n"
} }
if czCommit.Closes != nil { if czCommit.Closes != nil {
commit += ("Closes fix " + *czCommit.Closes) commit += "Closes fix " + *czCommit.Closes
} }
return commit return commit
} }