From 75a20eaa2abd6ff65b3a78de05e5d72d852bdd3f Mon Sep 17 00:00:00 2001 From: elipeter Date: Mon, 23 Jun 2025 19:39:38 +0200 Subject: [PATCH] Simplify console output formatting in `index.rs` by removing redundant characters in success message. --- src/commands/index.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/index.rs b/src/commands/index.rs index 01232837..cf47bab4 100644 --- a/src/commands/index.rs +++ b/src/commands/index.rs @@ -23,7 +23,7 @@ pub fn handle( if force || !db_path.exists() { build_index(&project_name, &build_path, &db_path, config)?; - println!("{} {} {}", "✔", style("Index built:" ).green(), style(db_path.display()).white().bold()); + println!("✔ {} {}", style("Index built:" ).green(), style(db_path.display()).white().bold()); } else { println!("{} {}", style("↩ Index already exists").yellow(), style("(use --force to rebuild)").dim()); }