Rollup merge of #77042 - imbolc:patch-2, r=kennytm

Improve documentation for ToSocketAddrs

I little clarification
This commit is contained in:
Dylan DPC 2020-09-23 14:54:11 +02:00 committed by GitHub
commit 049ba0c6f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -745,9 +745,9 @@ impl hash::Hash for SocketAddrV6 {
/// `(`[`Ipv4Addr`]`, `[`u16`]`)`, `(`[`Ipv6Addr`]`, `[`u16`]`)`: /// `(`[`Ipv4Addr`]`, `[`u16`]`)`, `(`[`Ipv6Addr`]`, `[`u16`]`)`:
/// [`to_socket_addrs`] constructs a [`SocketAddr`] trivially. /// [`to_socket_addrs`] constructs a [`SocketAddr`] trivially.
/// ///
/// * `(`[`&str`]`, `[`u16`]`)`: the string should be either a string representation /// * `(`[`&str`]`, `[`u16`]`)`: [`&str`] should be either a string representation
/// of an [`IpAddr`] address as expected by [`FromStr`] implementation or a host /// of an [`IpAddr`] address as expected by [`FromStr`] implementation or a host
/// name. /// name. [`u16`] is the port number.
/// ///
/// * [`&str`]: the string should be either a string representation of a /// * [`&str`]: the string should be either a string representation of a
/// [`SocketAddr`] as expected by its [`FromStr`] implementation or a string like /// [`SocketAddr`] as expected by its [`FromStr`] implementation or a string like