Skip to content

Commit

Permalink
Add colon to WARN
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeRoggenbuck committed Mar 23, 2022
1 parent 67c3d95 commit 3fbecea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/display.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use colored::*;
macro_rules! warn_user {
($a:expr) => {{
use colored::Colorize;
println!("{}{}", "WARN".bold().yellow(), $a,);
println!("{}: {}", "WARN".bold().yellow(), $a,);
}};
}

Expand Down

0 comments on commit 3fbecea

Please sign in to comment.