Skip to content

Commit 0221b46

Browse files
authored
Merge pull request RustPython#2032 from ohgree/typo
os.rs - Minor typo fix for panic! macro
2 parents 543104d + 03e7825 commit 0221b46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/stdlib/os.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ fn os_symlink(
10121012
} else if meta.is_dir() {
10131013
win_fs::symlink_dir(src.path, dst.path)
10141014
} else {
1015-
panic!("Uknown file type");
1015+
panic!("Unknown file type");
10161016
};
10171017
ret.map_err(|err| convert_io_error(vm, err))
10181018
}

0 commit comments

Comments
 (0)