summaryrefslogtreecommitdiffstats
path: root/tokio/src/fs/write.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/fs/write.rs')
-rw-r--r--tokio/src/fs/write.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/tokio/src/fs/write.rs b/tokio/src/fs/write.rs
index 0114cab8..9b6cf530 100644
--- a/tokio/src/fs/write.rs
+++ b/tokio/src/fs/write.rs
@@ -5,7 +5,9 @@ use std::{io, path::Path};
/// Creates a future that will open a file for writing and write the entire
/// contents of `contents` to it.
///
-/// This is the async equivalent of `std::fs::write`.
+/// This is the async equivalent of [`std::fs::write`][std].
+///
+/// [std]: fn@std::fs::write
///
/// # Examples
///