Add newlines before profile info

This commit is contained in:
nora 2022-05-09 11:22:13 +02:00
parent b6982d5023
commit 64e5ac616f

View file

@ -124,7 +124,7 @@ where
} }
let max = src_profile_count.iter().max().copied().unwrap_or(0); let max = src_profile_count.iter().max().copied().unwrap_or(0);
println!("---------------- Profile ----------------"); println!("\n\n---------------- Profile ----------------");
for (char, value) in src.bytes().zip(src_profile_count) { for (char, value) in src.bytes().zip(src_profile_count) {
print!("{}", color_by_profile(char as char, value, max)); print!("{}", color_by_profile(char as char, value, max));
} }