@@ -553,7 +553,7 @@ impl File {
553553 /// the `SetFileInformationByHandle` function on Windows. Note that, this
554554 /// [may change in the future][changes].
555555 ///
556- /// [changes]: ../io/index.html #platform-specific-behavior
556+ /// [changes]: io #platform-specific-behavior
557557 ///
558558 /// # Errors
559559 ///
@@ -1503,7 +1503,7 @@ impl AsInner<fs_imp::DirEntry> for DirEntry {
15031503/// and the `DeleteFile` function on Windows.
15041504/// Note that, this [may change in the future][changes].
15051505///
1506- /// [changes]: ../io/index.html #platform-specific-behavior
1506+ /// [changes]: io #platform-specific-behavior
15071507///
15081508/// # Errors
15091509///
@@ -1541,7 +1541,7 @@ pub fn remove_file<P: AsRef<Path>>(path: P) -> io::Result<()> {
15411541/// and the `GetFileAttributesEx` function on Windows.
15421542/// Note that, this [may change in the future][changes].
15431543///
1544- /// [changes]: ../io/index.html #platform-specific-behavior
1544+ /// [changes]: io #platform-specific-behavior
15451545///
15461546/// # Errors
15471547///
@@ -1575,7 +1575,7 @@ pub fn metadata<P: AsRef<Path>>(path: P) -> io::Result<Metadata> {
15751575/// and the `GetFileAttributesEx` function on Windows.
15761576/// Note that, this [may change in the future][changes].
15771577///
1578- /// [changes]: ../io/index.html #platform-specific-behavior
1578+ /// [changes]: io #platform-specific-behavior
15791579///
15801580/// # Errors
15811581///
@@ -1618,7 +1618,7 @@ pub fn symlink_metadata<P: AsRef<Path>>(path: P) -> io::Result<Metadata> {
16181618///
16191619/// Note that, this [may change in the future][changes].
16201620///
1621- /// [changes]: ../io/index.html #platform-specific-behavior
1621+ /// [changes]: io #platform-specific-behavior
16221622///
16231623/// # Errors
16241624///
@@ -1669,7 +1669,7 @@ pub fn rename<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> io::Result<()>
16691669/// `fcopyfile`.
16701670/// Note that, this [may change in the future][changes].
16711671///
1672- /// [changes]: ../io/index.html #platform-specific-behavior
1672+ /// [changes]: io #platform-specific-behavior
16731673///
16741674/// # Errors
16751675///
@@ -1707,7 +1707,7 @@ pub fn copy<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> io::Result<u64> {
17071707/// and the `CreateHardLink` function on Windows.
17081708/// Note that, this [may change in the future][changes].
17091709///
1710- /// [changes]: ../io/index.html #platform-specific-behavior
1710+ /// [changes]: io #platform-specific-behavior
17111711///
17121712/// # Errors
17131713///
@@ -1772,7 +1772,7 @@ pub fn soft_link<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> io::Result<(
17721772/// `FILE_FLAG_BACKUP_SEMANTICS` flags on Windows.
17731773/// Note that, this [may change in the future][changes].
17741774///
1775- /// [changes]: ../io/index.html #platform-specific-behavior
1775+ /// [changes]: io #platform-specific-behavior
17761776///
17771777/// # Errors
17781778///
@@ -1812,7 +1812,7 @@ pub fn read_link<P: AsRef<Path>>(path: P) -> io::Result<PathBuf> {
18121812/// with other applications (if passed to the application on the command-line,
18131813/// or written to a file another application may read).
18141814///
1815- /// [changes]: ../io/index.html #platform-specific-behavior
1815+ /// [changes]: io #platform-specific-behavior
18161816/// [path]: https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file
18171817///
18181818/// # Errors
@@ -1846,7 +1846,7 @@ pub fn canonicalize<P: AsRef<Path>>(path: P) -> io::Result<PathBuf> {
18461846/// and the `CreateDirectory` function on Windows.
18471847/// Note that, this [may change in the future][changes].
18481848///
1849- /// [changes]: ../io/index.html #platform-specific-behavior
1849+ /// [changes]: io #platform-specific-behavior
18501850///
18511851/// **NOTE**: If a parent of the given path doesn't exist, this function will
18521852/// 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<()> {
18871887/// and the `CreateDirectory` function on Windows.
18881888/// Note that, this [may change in the future][changes].
18891889///
1890- /// [changes]: ../io/index.html #platform-specific-behavior
1890+ /// [changes]: io #platform-specific-behavior
18911891///
18921892/// # Errors
18931893///
@@ -1930,7 +1930,7 @@ pub fn create_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
19301930/// and the `RemoveDirectory` function on Windows.
19311931/// Note that, this [may change in the future][changes].
19321932///
1933- /// [changes]: ../io/index.html #platform-specific-behavior
1933+ /// [changes]: io #platform-specific-behavior
19341934///
19351935/// # Errors
19361936///
@@ -1970,7 +1970,7 @@ pub fn remove_dir<P: AsRef<Path>>(path: P) -> io::Result<()> {
19701970/// on Windows.
19711971/// Note that, this [may change in the future][changes].
19721972///
1973- /// [changes]: ../io/index.html #platform-specific-behavior
1973+ /// [changes]: io #platform-specific-behavior
19741974///
19751975/// # Errors
19761976///
@@ -2006,7 +2006,7 @@ pub fn remove_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
20062006/// currently corresponds to `readdir` on Unix and `FindNextFile` on Windows.
20072007/// Note that, this [may change in the future][changes].
20082008///
2009- /// [changes]: ../io/index.html #platform-specific-behavior
2009+ /// [changes]: io #platform-specific-behavior
20102010///
20112011/// The order in which this iterator returns entries is platform and filesystem
20122012/// dependent.
@@ -2075,7 +2075,7 @@ pub fn read_dir<P: AsRef<Path>>(path: P) -> io::Result<ReadDir> {
20752075/// and the `SetFileAttributes` function on Windows.
20762076/// Note that, this [may change in the future][changes].
20772077///
2078- /// [changes]: ../io/index.html #platform-specific-behavior
2078+ /// [changes]: io #platform-specific-behavior
20792079///
20802080/// # Errors
20812081///
0 commit comments