diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2018-10-05 18:35:29 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-06 20:24:47 -0400 |
commit | 62a502060276955a18735b1ef25b51803ac25cc4 (patch) | |
tree | 468c57896bd6b39946dea36bd46bf306a47aa7f6 /src/ops.rs | |
parent | f998f7b9afec5cb5b503b018aaed14208f4b20ff (diff) |
Fix symlink error message
Diffstat (limited to 'src/ops.rs')
-rw-r--r-- | src/ops.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ops.rs b/src/ops.rs index aa662cb16..d3d214021 100644 --- a/src/ops.rs +++ b/src/ops.rs @@ -968,7 +968,7 @@ fn op_symlink( if cfg!(windows) { return odd_future(errors::new( ErrorKind::Other, - "symlink for windows is not yet implemented".to_string(), + "Not implemented".to_string(), )); } |