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 86c9f26904
commit 2335658b3c
No known key found for this signature in database
GPG key ID: B0EF3A98B29ADB1D

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);