chore(aesthetics): more consistent styling of errors and notes

This commit is contained in:
Muhammad Nauman Raza 2024-05-26 15:58:15 +01:00
parent 7268d6890e
commit 76cb110e95

View file

@ -51,9 +51,9 @@ fn vaporise() -> Result<()> {
let args = Args::parse();
if args.targets.is_empty() {
println!("{}: no arguments passed", "error".red().bold());
println!("{} no arguments passed", "error:".red().bold());
println!(
"{}: try 'vpr -h' for more information",
"{} try 'vpr -h' for more information",
"note:".cyan().bold()
);
process::exit(0);