Skip to content

Commit c5a9e18

Browse files
authored
Merge pull request #3655 from SteveLauC/FromRawFd_link
fix links of I/O safety RFC
2 parents 7a58e5b + a3c1e79 commit c5a9e18

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

text/3128-io-safety.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -417,21 +417,21 @@ patiently answering my many questions!
417417
[@RalfJung]: https://github.com/RalfJung
418418
[`File`]: https://doc.rust-lang.org/stable/std/fs/struct.File.html
419419
[`TcpStream`]: https://doc.rust-lang.org/stable/std/net/struct.TcpStream.html
420-
[`FromRawFd`]: https://doc.rust-lang.org/stable/std/os/unix/io/trait.FromRawFd.html
420+
[`FromRawFd`]: https://doc.rust-lang.org/stable/std/os/fd/trait.FromRawFd.html
421421
[`FromRawHandle`]: https://doc.rust-lang.org/stable/std/os/windows/io/trait.FromRawHandle.html
422422
[`FromRawSocket`]: https://doc.rust-lang.org/stable/std/os/windows/io/trait.FromRawSocket.html
423-
[`AsRawFd`]: https://doc.rust-lang.org/stable/std/os/unix/io/trait.AsRawFd.html
423+
[`AsRawFd`]: https://doc.rust-lang.org/stable/std/os/fd/trait.AsRawFd.html
424424
[`AsRawHandle`]: https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsRawHandle.html
425425
[`AsRawSocket`]: https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsRawSocket.html
426-
[`IntoRawFd`]: https://doc.rust-lang.org/stable/std/os/unix/io/trait.IntoRawFd.html
426+
[`IntoRawFd`]: https://doc.rust-lang.org/stable/std/os/fd/trait.IntoRawFd.html
427427
[`IntoRawHandle`]: https://doc.rust-lang.org/stable/std/os/windows/io/trait.IntoRawHandle.html
428428
[`IntoRawSocket`]: https://doc.rust-lang.org/stable/std/os/windows/io/trait.IntoRawSocket.html
429-
[`RawFd`]: https://doc.rust-lang.org/stable/std/os/unix/io/type.RawFd.html
429+
[`RawFd`]: https://doc.rust-lang.org/stable/std/os/fd/type.RawFd.html
430430
[`RawHandle`]: https://doc.rust-lang.org/stable/std/os/windows/io/type.RawHandle.html
431431
[`RawSocket`]: https://doc.rust-lang.org/stable/std/os/windows/io/type.RawSocket.html
432-
[`AsRawFd::as_raw_fd`]: https://doc.rust-lang.org/stable/std/os/unix/io/trait.AsRawFd.html#tymethod.as_raw_fd
433-
[`FromRawFd::from_raw_fd`]: https://doc.rust-lang.org/stable/std/os/unix/io/trait.FromRawFd.html#tymethod.from_raw_fd
434-
[`from_raw_fd`]: https://doc.rust-lang.org/stable/std/os/unix/io/trait.FromRawFd.html#tymethod.from_raw_fd
432+
[`AsRawFd::as_raw_fd`]: https://doc.rust-lang.org/stable/std/os/fd/trait.AsRawFd.html#tymethod.as_raw_fd
433+
[`FromRawFd::from_raw_fd`]: https://doc.rust-lang.org/stable/std/os/fd/trait.FromRawFd.html#tymethod.from_raw_fd
434+
[`from_raw_fd`]: https://doc.rust-lang.org/stable/std/os/fd/trait.FromRawFd.html#tymethod.from_raw_fd
435435
[`from_raw_handle`]: https://doc.rust-lang.org/stable/std/os/windows/io/trait.FromRawHandle.html#tymethod.from_raw_handle
436436
[`from_raw_socket`]: https://doc.rust-lang.org/stable/std/os/windows/io/trait.FromRawSocket.html#tymethod.from_raw_socket
437437
[`std::mem::forget`]: https://doc.rust-lang.org/stable/std/mem/fn.forget.html

0 commit comments

Comments
 (0)