Skip to content

Commit 96c91af

Browse files
author
Ikko Ashimine
authored
compiletest: fix typo in runtest.rs
nonexistant -> nonexistent
1 parent ef9810a commit 96c91af

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)