-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Add link to Issue #34202 in udp docs #84835
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
r? @m-ou-se (rust-highfive has picked a reviewer for you, use r? to override) |
library/std/src/net/udp.rs
Outdated
@@ -159,7 +159,7 @@ impl UdpSocket { | |||
/// This will return an error when the IP version of the local socket | |||
/// does not match that returned from [`ToSocketAddrs`]. | |||
/// | |||
/// See issue #34202 for more details. | |||
/// See [`Issue #34202`] for more details. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The backticks are only needed for code, to format it monospace font.
/// See [`Issue #34202`] for more details. | |
/// See [issue #34202] for more details. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
library/std/src/net/udp.rs
Outdated
@@ -169,6 +169,8 @@ impl UdpSocket { | |||
/// let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address"); | |||
/// socket.send_to(&[0; 10], "127.0.0.1:4242").expect("couldn't send data"); | |||
/// ``` | |||
/// | |||
/// [`Issue #34202`]: https://github.com/rust-lang/rust/issues/34202 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// [`Issue #34202`]: https://github.com/rust-lang/rust/issues/34202 | |
/// [issue #34202]: https://github.com/rust-lang/rust/issues/34202 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
Signed-off-by: wcampbell <wcampbell1995@gmail.com>
4958b61
to
e4250a0
Compare
Thanks! @bors r+ rollup |
📌 Commit e4250a0 has been approved by |
… r=m-ou-se Add link to Issue rust-lang#34202 in udp docs
…laumeGomez Rollup of 6 pull requests Successful merges: - rust-lang#84835 (Add link to Issue rust-lang#34202 in udp docs) - rust-lang#84852 (Change librustdoc write!(.. \n) to writeln!(..); fix comment grammar) - rust-lang#84854 (use double quotes and full path for E0761) - rust-lang#84856 (Correct stability of ErrorKind::OutOfMemory) - rust-lang#84858 (Fix stability attributes of byte-to-string specialization) - rust-lang#84860 (Link to MCP from target tier policy) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
No description provided.