Skip to content

Commit 7667d57

Browse files
authored
Change "=> n" to "| n plays" for songs
1 parent ca9aacf commit 7667d57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/display.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,6 @@ fn print_album(album: HashMap<Song, u32>) {
311311
let mus = album_vec.get(i).unwrap();
312312
let m = mus.0;
313313
let n = mus.1;
314-
println!("#{}\t{} => {}", i + 1, m, n)
314+
println!("#{}\t{} | {} plays", i + 1, m, n)
315315
}
316316
}

0 commit comments

Comments
 (0)