From 96c91afebb5a01e6076a7f3de44ea3f2584d9099 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Tue, 16 Aug 2022 16:51:52 +0900 Subject: [PATCH] compiletest: fix typo in runtest.rs nonexistant -> nonexistent --- src/tools/compiletest/src/runtest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs index 47f2a2d3482..3e9e5a03d5e 100644 --- a/src/tools/compiletest/src/runtest.rs +++ b/src/tools/compiletest/src/runtest.rs @@ -3761,7 +3761,7 @@ fn load_expected_output_from_path(&self, path: &Path) -> Result fn delete_file(&self, file: &PathBuf) { if !file.exists() { - // Deleting a nonexistant file would error. + // Deleting a nonexistent file would error. return; } if let Err(e) = fs::remove_file(file) {