Browse Source

fix wording in CLI building waiting message

Granville Schmidt 1 year ago
parent
commit
b372701d30
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/cli/src/builder.rs

+ 1 - 1
packages/cli/src/builder.rs

@@ -443,7 +443,7 @@ fn prettier_build(cmd: subprocess::Exec) -> anyhow::Result<Vec<Diagnostic>> {
             .unwrap()
             .tick_chars("/|\\- "),
     );
-    pb.set_message("💼 Waiting to start build the project...");
+    pb.set_message("💼 Waiting to start building the project...");
 
     let stdout = cmd.detached().stream_stdout()?;
     let reader = std::io::BufReader::new(stdout);