Skip to content

Commit

Permalink
add newline
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkenan committed Nov 22, 2024
1 parent bea2454 commit 8a26ff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/hive_report/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
// Sort by file name.
results.sort_by(|a, b| a.0.cmp(&b.0));

println!("# Hive coverage report");
println!("# Hive coverage report\n");

for (file_name, passed, total) in results {
println!("- {}: {}/{}", file_name, passed, total);
Expand Down

0 comments on commit 8a26ff4

Please sign in to comment.