Skip to content

Commit bbe6125

Browse files
committed
fix: Restore em dash in topic list output
Accidentally replaced the em dash with a hyphen during the fmt.Fprintf refactor, breaking TestBuildTopicList_TopicsHaveDescriptions.
1 parent b399dff commit bbe6125

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

services/control-plane/internal/generator/topic_list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func BuildTopicList() string {
3838
fmt.Fprintf(&sb, "### %s\n\n", svc)
3939
for _, topic := range topicList {
4040
desc := describeTopicName(topic)
41-
fmt.Fprintf(&sb, "- `%s` - %s\n", topic, desc)
41+
fmt.Fprintf(&sb, "- `%s` %s\n", topic, desc)
4242
}
4343
sb.WriteString("\n")
4444
}

0 commit comments

Comments
 (0)