@@ -553,7 +553,7 @@ impl File {
553
553
/// the `SetFileInformationByHandle` function on Windows. Note that, this
554
554
/// [may change in the future][changes].
555
555
///
556
- /// [changes]: ../io/index.html #platform-specific-behavior
556
+ /// [changes]: io #platform-specific-behavior
557
557
///
558
558
/// # Errors
559
559
///
@@ -1503,7 +1503,7 @@ impl AsInner<fs_imp::DirEntry> for DirEntry {
1503
1503
/// and the `DeleteFile` function on Windows.
1504
1504
/// Note that, this [may change in the future][changes].
1505
1505
///
1506
- /// [changes]: ../io/index.html #platform-specific-behavior
1506
+ /// [changes]: io #platform-specific-behavior
1507
1507
///
1508
1508
/// # Errors
1509
1509
///
@@ -1541,7 +1541,7 @@ pub fn remove_file<P: AsRef<Path>>(path: P) -> io::Result<()> {
1541
1541
/// and the `GetFileAttributesEx` function on Windows.
1542
1542
/// Note that, this [may change in the future][changes].
1543
1543
///
1544
- /// [changes]: ../io/index.html #platform-specific-behavior
1544
+ /// [changes]: io #platform-specific-behavior
1545
1545
///
1546
1546
/// # Errors
1547
1547
///
@@ -1575,7 +1575,7 @@ pub fn metadata<P: AsRef<Path>>(path: P) -> io::Result<Metadata> {
1575
1575
/// and the `GetFileAttributesEx` function on Windows.
1576
1576
/// Note that, this [may change in the future][changes].
1577
1577
///
1578
- /// [changes]: ../io/index.html #platform-specific-behavior
1578
+ /// [changes]: io #platform-specific-behavior
1579
1579
///
1580
1580
/// # Errors
1581
1581
///
@@ -1618,7 +1618,7 @@ pub fn symlink_metadata<P: AsRef<Path>>(path: P) -> io::Result<Metadata> {
1618
1618
///
1619
1619
/// Note that, this [may change in the future][changes].
1620
1620
///
1621
- /// [changes]: ../io/index.html #platform-specific-behavior
1621
+ /// [changes]: io #platform-specific-behavior
1622
1622
///
1623
1623
/// # Errors
1624
1624
///
@@ -1669,7 +1669,7 @@ pub fn rename<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> io::Result<()>
1669
1669
/// `fcopyfile`.
1670
1670
/// Note that, this [may change in the future][changes].
1671
1671
///
1672
- /// [changes]: ../io/index.html #platform-specific-behavior
1672
+ /// [changes]: io #platform-specific-behavior
1673
1673
///
1674
1674
/// # Errors
1675
1675
///
@@ -1707,7 +1707,7 @@ pub fn copy<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> io::Result<u64> {
1707
1707
/// and the `CreateHardLink` function on Windows.
1708
1708
/// Note that, this [may change in the future][changes].
1709
1709
///
1710
- /// [changes]: ../io/index.html #platform-specific-behavior
1710
+ /// [changes]: io #platform-specific-behavior
1711
1711
///
1712
1712
/// # Errors
1713
1713
///
@@ -1772,7 +1772,7 @@ pub fn soft_link<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> io::Result<(
1772
1772
/// `FILE_FLAG_BACKUP_SEMANTICS` flags on Windows.
1773
1773
/// Note that, this [may change in the future][changes].
1774
1774
///
1775
- /// [changes]: ../io/index.html #platform-specific-behavior
1775
+ /// [changes]: io #platform-specific-behavior
1776
1776
///
1777
1777
/// # Errors
1778
1778
///
@@ -1812,7 +1812,7 @@ pub fn read_link<P: AsRef<Path>>(path: P) -> io::Result<PathBuf> {
1812
1812
/// with other applications (if passed to the application on the command-line,
1813
1813
/// or written to a file another application may read).
1814
1814
///
1815
- /// [changes]: ../io/index.html #platform-specific-behavior
1815
+ /// [changes]: io #platform-specific-behavior
1816
1816
/// [path]: https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file
1817
1817
///
1818
1818
/// # Errors
@@ -1846,7 +1846,7 @@ pub fn canonicalize<P: AsRef<Path>>(path: P) -> io::Result<PathBuf> {
1846
1846
/// and the `CreateDirectory` function on Windows.
1847
1847
/// Note that, this [may change in the future][changes].
1848
1848
///
1849
- /// [changes]: ../io/index.html #platform-specific-behavior
1849
+ /// [changes]: io #platform-specific-behavior
1850
1850
///
1851
1851
/// **NOTE**: If a parent of the given path doesn't exist, this function will
1852
1852
/// return an error. To create a directory and all its missing parents at the
@@ -1887,7 +1887,7 @@ pub fn create_dir<P: AsRef<Path>>(path: P) -> io::Result<()> {
1887
1887
/// and the `CreateDirectory` function on Windows.
1888
1888
/// Note that, this [may change in the future][changes].
1889
1889
///
1890
- /// [changes]: ../io/index.html #platform-specific-behavior
1890
+ /// [changes]: io #platform-specific-behavior
1891
1891
///
1892
1892
/// # Errors
1893
1893
///
@@ -1930,7 +1930,7 @@ pub fn create_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
1930
1930
/// and the `RemoveDirectory` function on Windows.
1931
1931
/// Note that, this [may change in the future][changes].
1932
1932
///
1933
- /// [changes]: ../io/index.html #platform-specific-behavior
1933
+ /// [changes]: io #platform-specific-behavior
1934
1934
///
1935
1935
/// # Errors
1936
1936
///
@@ -1970,7 +1970,7 @@ pub fn remove_dir<P: AsRef<Path>>(path: P) -> io::Result<()> {
1970
1970
/// on Windows.
1971
1971
/// Note that, this [may change in the future][changes].
1972
1972
///
1973
- /// [changes]: ../io/index.html #platform-specific-behavior
1973
+ /// [changes]: io #platform-specific-behavior
1974
1974
///
1975
1975
/// # Errors
1976
1976
///
@@ -2006,7 +2006,7 @@ pub fn remove_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
2006
2006
/// currently corresponds to `readdir` on Unix and `FindNextFile` on Windows.
2007
2007
/// Note that, this [may change in the future][changes].
2008
2008
///
2009
- /// [changes]: ../io/index.html #platform-specific-behavior
2009
+ /// [changes]: io #platform-specific-behavior
2010
2010
///
2011
2011
/// The order in which this iterator returns entries is platform and filesystem
2012
2012
/// dependent.
@@ -2075,7 +2075,7 @@ pub fn read_dir<P: AsRef<Path>>(path: P) -> io::Result<ReadDir> {
2075
2075
/// and the `SetFileAttributes` function on Windows.
2076
2076
/// Note that, this [may change in the future][changes].
2077
2077
///
2078
- /// [changes]: ../io/index.html #platform-specific-behavior
2078
+ /// [changes]: io #platform-specific-behavior
2079
2079
///
2080
2080
/// # Errors
2081
2081
///
0 commit comments