about summary refs log tree commit diff
path: root/library/std/src/net/mod.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-11-05 15:06:06 +0000
committerbors <bors@rust-lang.org>2022-11-05 15:06:06 +0000
commit42e450d6a0b5442085466bd0a93b2a77190ae0ce (patch)
tree49665b9d9182fe34063f8a8701c1586a4bd7ba89 /library/std/src/net/mod.rs
parent4492c029eff7b42e91e759576ab0c7ca88f873dc (diff)
parentaaa23925db4069a856acc881ceb27402adcd8c63 (diff)
downloadrust-42e450d6a0b5442085466bd0a93b2a77190ae0ce.tar.gz
rust-42e450d6a0b5442085466bd0a93b2a77190ae0ce.zip
Auto merge of #2650 - RalfJung:rustup, r=RalfJung
Rustup
Diffstat (limited to 'library/std/src/net/mod.rs')
-rw-r--r--library/std/src/net/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/net/mod.rs b/library/std/src/net/mod.rs
index 01e3db9de51..19d90e7ec38 100644
--- a/library/std/src/net/mod.rs
+++ b/library/std/src/net/mod.rs
@@ -11,7 +11,7 @@
 //!   [`Ipv6Addr`] are respectively IPv4 and IPv6 addresses
 //! * [`SocketAddr`] represents socket addresses of either IPv4 or IPv6; [`SocketAddrV4`]
 //!   and [`SocketAddrV6`] are respectively IPv4 and IPv6 socket addresses
-//! * [`ToSocketAddrs`] is a trait that used for generic address resolution when interacting
+//! * [`ToSocketAddrs`] is a trait that is used for generic address resolution when interacting
 //!   with networking objects like [`TcpListener`], [`TcpStream`] or [`UdpSocket`]
 //! * Other types are return or parameter types for various methods in this module
 //!