Unnamed repository; edit this file 'description' to name the repository.
Update crates/proc-macro-test/build.rs
Co-authored-by: Laurențiu Nicola <[email protected]>
| -rw-r--r-- | crates/proc-macro-test/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/proc-macro-test/build.rs b/crates/proc-macro-test/build.rs index 5502e3ba7c..9e92b5de9e 100644 --- a/crates/proc-macro-test/build.rs +++ b/crates/proc-macro-test/build.rs @@ -25,7 +25,7 @@ fn main() { let staging_dir = out_dir.join("proc-macro-test-imp-staging"); // this'll error out if the staging dir didn't previously. using // `std::fs::exists` would suffer from TOCTOU so just do our best to - // wip it and ignore errors. + // wipe it and ignore errors. let _ = std::fs::remove_dir_all(&staging_dir); println!("Creating {}", staging_dir.display()); |