1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 23:34:47 -05:00

Fix symlink error message

This commit is contained in:
Kevin (Kun) "Kassimo" Qian 2018-10-05 18:35:29 -07:00 committed by Ryan Dahl
parent f998f7b9af
commit 62a5020602

View file

@ -968,7 +968,7 @@ fn op_symlink(
if cfg!(windows) { if cfg!(windows) {
return odd_future(errors::new( return odd_future(errors::new(
ErrorKind::Other, ErrorKind::Other,
"symlink for windows is not yet implemented".to_string(), "Not implemented".to_string(),
)); ));
} }