Skip to content

Commit bfe4279

Browse files
committed
fix: remove redundant newlines in fmt.Fprintln calls
1 parent 3a5a5f9 commit bfe4279

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/release-notes/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func main() {
6161

6262
// Generate release notes or AI prompt
6363
if *aiPrompt {
64-
fmt.Fprintln(os.Stderr, "\n📝 Generating Claude Code prompt...\n")
64+
fmt.Fprintln(os.Stderr, "\n📝 Generating Claude Code prompt...")
6565
prompt := generateClaudeCodePrompt(*version, fromTag, commits, result)
6666

6767
if *output != "" {
@@ -73,7 +73,7 @@ func main() {
7373
fmt.Println(prompt)
7474
}
7575
} else {
76-
fmt.Fprintln(os.Stderr, "\n📝 Generating release notes...\n")
76+
fmt.Fprintln(os.Stderr, "\n📝 Generating release notes...")
7777
releaseNotes := generateReleaseNotes(*version, fromTag, commits, result)
7878

7979
if *output != "" {

0 commit comments

Comments
 (0)