mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 20:46:07 +03:00
compiletest: fix typo in runtest.rs
nonexistant -> nonexistent
This commit is contained in:
@@ -3761,7 +3761,7 @@ fn load_expected_output_from_path(&self, path: &Path) -> Result<String, String>
|
||||
|
||||
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) {
|
||||
|
||||
Reference in New Issue
Block a user