Skip to content

Commit 148f872

Browse files
committed
fix: remove double quote from commit message
1 parent 4848df6 commit 148f872

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commiter/commiter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
// ParseCommitMessage fekopkp
1111
func parseCommitMessage(commitType string, input string) string {
12-
return fmt.Sprintf("\"%s: %s\"", commitType, input)
12+
return fmt.Sprintf("%s: %s", commitType, input)
1313
}
1414

1515
// CommitMessage should

0 commit comments

Comments
 (0)