Skip to content

Commit 04dd369

Browse files
authored
Rollup merge of rust-lang#100613 - eltociear:patch-15, r=Mark-Simulacrum
compiletest: fix typo in runtest.rs nonexistant -> nonexistent
2 parents 2e78db3 + 96c91af commit 04dd369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/compiletest/src/runtest.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3761,7 +3761,7 @@ impl<'test> TestCx<'test> {
37613761

37623762
fn delete_file(&self, file: &PathBuf) {
37633763
if !file.exists() {
3764-
// Deleting a nonexistant file would error.
3764+
// Deleting a nonexistent file would error.
37653765
return;
37663766
}
37673767
if let Err(e) = fs::remove_file(file) {

0 commit comments

Comments
 (0)