Skip to content

Commit

Permalink
update format
Browse files Browse the repository at this point in the history
  • Loading branch information
ronenlu committed Jun 16, 2024
1 parent 140eaab commit 3c48961
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions atlasexec/atlas_models.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,9 @@ func (a *MigrateApply) Summary(ident string) string {
}
var b strings.Builder
for i, l := range lines {
b.WriteString("--")
b.WriteString("-")
b.WriteByte(' ')
b.WriteString(l)
b.WriteString(fmt.Sprintf("**%s**", l))
if i < len(lines)-1 {
b.WriteByte('\n')
b.WriteString(ident)
Expand Down

0 comments on commit 3c48961

Please sign in to comment.