Skip to content

Commit

Permalink
✏️ - Fix some message texts
Browse files Browse the repository at this point in the history
  • Loading branch information
cknitt authored and jfrolich committed Jul 19, 2023
1 parent ab644bd commit cb3d68d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ pub fn clean(path: &str) {
let timing_clean_compiler_assets_elapsed = timing_clean_compiler_assets.elapsed();

println!(
"{}\r{} {}Cleant compiler assets in {:.2}s",
"{}\r{} {}Cleaned compiler assets in {:.2}s",
LINE_CLEAR,
style("[1/2]").bold().dim(),
CHECKMARK,
Expand All @@ -1062,7 +1062,7 @@ pub fn clean(path: &str) {

let timing_clean_mjs = Instant::now();
print!(
"{} {} Clearing mjs files...",
"{} {} Cleaning mjs files...",
style("[2/2]").bold().dim(),
SWEEP
);
Expand All @@ -1072,7 +1072,7 @@ pub fn clean(path: &str) {
clean_mjs_files(&build_state.modules);
let timing_clean_mjs_elapsed = timing_clean_mjs.elapsed();
println!(
"{}\r{} {}Cleant mjs in {:.2}s",
"{}\r{} {}Cleaned mjs files in {:.2}s",
LINE_CLEAR,
style("[2/2]").bold().dim(),
CHECKMARK,
Expand Down

0 comments on commit cb3d68d

Please sign in to comment.