diff --git a/internal/radio/song.go b/internal/radio/song.go index 0730a27..b9fb0da 100644 --- a/internal/radio/song.go +++ b/internal/radio/song.go @@ -16,8 +16,7 @@ type Song struct { StartAt time.Time } -// ArtistTitle returns a concatination of an artist and a title with a hyphen -// between then. +// ArtistTitle returns a string formatted as " - ". func (s *Song) ArtistTitle() string { return s.Artist + " - " + s.Title }