Skip to content

Commit 03e7825

Browse files
author
Minjun Shin
committed
Minor typo fix for panic! macro
1 parent 3f3a83c commit 03e7825

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)