From 9a8efe235f28e67521a620713b4ad23b2b4bd48f Mon Sep 17 00:00:00 2001 From: Amos Wenger Date: Wed, 20 Jul 2022 16:56:25 +0200 Subject: [PATCH] Update crates/proc-macro-test/build.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Laurențiu Nicola --- crates/proc-macro-test/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/proc-macro-test/build.rs b/crates/proc-macro-test/build.rs index 5502e3ba7c9..9e92b5de9ec 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());