@@ -1121,7 +1121,9 @@ impl Permissions {
1121
1121
/// writing.
1122
1122
///
1123
1123
/// This operation does **not** modify the filesystem. To modify the
1124
- /// filesystem use the `fs::set_permissions` function.
1124
+ /// filesystem use the [`fs::set_permissions`] function.
1125
+ ///
1126
+ /// [`fs::set_permissions`]: fn.set_permissions.html
1125
1127
///
1126
1128
/// # Examples
1127
1129
///
@@ -1639,10 +1641,15 @@ pub fn hard_link<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> io::Result<(
1639
1641
///
1640
1642
/// The `dst` path will be a symbolic link pointing to the `src` path.
1641
1643
/// On Windows, this will be a file symlink, not a directory symlink;
1642
- /// for this reason, the platform-specific `std::os::unix::fs::symlink`
1643
- /// and `std::os::windows::fs::{ symlink_file, symlink_dir}` should be
1644
+ /// for this reason, the platform-specific [ `std::os::unix::fs::symlink`]
1645
+ /// and [ `std::os::windows::fs::symlink_file`] or [` symlink_dir`] should be
1644
1646
/// used instead to make the intent explicit.
1645
1647
///
1648
+ /// [`std::os::unix::fs::symlink`]: ../os/unix/fs/fn.symlink.html
1649
+ /// [`std::os::windows::fs::symlink_file`]: ../os/windows/fs/fn.symlink_file.html
1650
+ /// [`symlink_dir`]: ../os/windows/fs/fn.symlink_dir.html
1651
+ ///
1652
+ ///
1646
1653
/// # Examples
1647
1654
///
1648
1655
/// ```no_run
@@ -1795,14 +1802,16 @@ pub fn create_dir<P: AsRef<Path>>(path: P) -> io::Result<()> {
1795
1802
/// * If any directory in the path specified by `path`
1796
1803
/// does not already exist and it could not be created otherwise. The specific
1797
1804
/// error conditions for when a directory is being created (after it is
1798
- /// determined to not exist) are outlined by `fs::create_dir`.
1805
+ /// determined to not exist) are outlined by [ `fs::create_dir`] .
1799
1806
///
1800
1807
/// Notable exception is made for situations where any of the directories
1801
1808
/// specified in the `path` could not be created as it was being created concurrently.
1802
1809
/// Such cases are considered to be successful. That is, calling `create_dir_all`
1803
1810
/// concurrently from multiple threads or processes is guaranteed not to fail
1804
1811
/// due to a race condition with itself.
1805
1812
///
1813
+ /// [`fs::create_dir`]: fn.create_dir.html
1814
+ ///
1806
1815
/// # Examples
1807
1816
///
1808
1817
/// ```no_run
@@ -1868,7 +1877,10 @@ pub fn remove_dir<P: AsRef<Path>>(path: P) -> io::Result<()> {
1868
1877
///
1869
1878
/// # Errors
1870
1879
///
1871
- /// See `file::remove_file` and `fs::remove_dir`.
1880
+ /// See [`fs::remove_file`] and [`fs::remove_dir`].
1881
+ ///
1882
+ /// [`fs::remove_file`]: fn.remove_file.html
1883
+ /// [`fs::remove_dir`]: fn.remove_dir.html
1872
1884
///
1873
1885
/// # Examples
1874
1886
///
0 commit comments