diff --git a/cmd/hive_report/src/main.rs b/cmd/hive_report/src/main.rs index 11cdb8717..5d7fea914 100644 --- a/cmd/hive_report/src/main.rs +++ b/cmd/hive_report/src/main.rs @@ -61,7 +61,7 @@ fn main() -> Result<(), Box> { // 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);