From ccc6d2a4970dbf476831ae6be1057bc1520a556d Mon Sep 17 00:00:00 2001 From: godsfryingpan Date: Mon, 23 Mar 2026 17:30:35 -0500 Subject: [PATCH] change output a little bit for formatting --- src/app.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app.rs b/src/app.rs index b820373..c6f7c4f 100644 --- a/src/app.rs +++ b/src/app.rs @@ -854,7 +854,7 @@ fn lint() -> std::io::Result<()> { let mut any_warnings = false; for src in &source_files { - println!(" {} {}", "Linting".green().bold(), src.display()); + println!(" {} {}", "Linting".green().bold(), src.display()); let status = Command::new("clang-tidy") .arg(src) @@ -873,9 +873,9 @@ fn lint() -> std::io::Result<()> { } if any_warnings { - println!("\n {} lint warnings found", "Warning".yellow().bold()); + println!("\n {} lint warnings found", "Warning".yellow().bold()); } else { - println!("\n {} no issues found", "Finished".green().bold()); + println!("\n {} no issues found", "Finished".green().bold()); } Ok(())