about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/fs.rs14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs
index 898ca55f2fe..26fcd348fc9 100644
--- a/src/libstd/fs.rs
+++ b/src/libstd/fs.rs
@@ -975,10 +975,16 @@ impl FileType {
 
     /// Test whether this file type represents a symbolic link.
     ///
-    /// The Metadata struct needs to be retreived with
-    /// fs::symlink_metadata() not fs::metadata(). metadata()
-    /// always follows symbolic links, so is_symlink will
-    /// always return false for the underlying file.
+    /// The underlying [`Metadata`] struct needs to be retrieved
+    /// with the [`fs::symlink_metadata`] function and not the
+    /// [`fs::metadata`] function. The [`fs::metadata`] function
+    /// follows symbolic links, so [`is_symlink`] would always
+    /// return false for the target file.
+    ///
+    /// [`Metadata`]: struct.Metadata.html
+    /// [`fs::metadata`]: fn.metadata.html
+    /// [`fs::symlink_metadata`]: fn.symlink_metadata.html
+    /// [`is_symlink`]: struct.FileType.html#method.is_symlink
     ///
     /// # Examples
     ///