Skip to content

Commit

Permalink
fix: Fix title formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Mar 11, 2024
1 parent ecea350 commit 4130468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/config/group.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func (g *Group) String() string {

var result string
if g.Title != "" {
result += g.Title + "\n"
result += "### " + g.Title + "\n"
}

for _, commit := range g.Commits {
Expand Down

0 comments on commit 4130468

Please sign in to comment.