From 844aa8b53e47934e30bff1ba9f70a0986874ae97 Mon Sep 17 00:00:00 2001 From: Amos Wenger Date: Wed, 20 Jul 2022 16:56:30 +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 9e92b5de9e..c6bd5160d4 100644 --- a/crates/proc-macro-test/build.rs +++ b/crates/proc-macro-test/build.rs @@ -23,7 +23,7 @@ fn main() { let imp_dir = std::env::current_dir().unwrap().join("imp"); let staging_dir = out_dir.join("proc-macro-test-imp-staging"); - // this'll error out if the staging dir didn't previously. using + // this'll error out if the staging dir didn't previously exist. using // `std::fs::exists` would suffer from TOCTOU so just do our best to // wipe it and ignore errors. let _ = std::fs::remove_dir_all(&staging_dir);