summaryrefslogtreecommitdiffstats
path: root/tokio/src/fs/os/windows/symlink_file.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/fs/os/windows/symlink_file.rs')
-rw-r--r--tokio/src/fs/os/windows/symlink_file.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/fs/os/windows/symlink_file.rs b/tokio/src/fs/os/windows/symlink_file.rs
index 623352a1..07d8e604 100644
--- a/tokio/src/fs/os/windows/symlink_file.rs
+++ b/tokio/src/fs/os/windows/symlink_file.rs
@@ -10,7 +10,7 @@ use std::path::Path;
///
/// This is an async version of [`std::os::windows::fs::symlink_file`][std]
///
-/// [std]: https://doc.rust-lang.org/std/os/windows/fs/fn.symlink_file.html
+/// [std]: std::os::windows::fs::symlink_file
pub async fn symlink_file(src: impl AsRef<Path>, dst: impl AsRef<Path>) -> io::Result<()> {
let src = src.as_ref().to_owned();
let dst = dst.as_ref().to_owned();