From 76cb110e950bee7c8aecb8f5db4154728b257276 Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Sun, 26 May 2024 15:58:15 +0100 Subject: [PATCH] chore(aesthetics): more consistent styling of errors and notes --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index df46ac2..3a80b26 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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);