File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ pub enum SocketAddr {
64
64
///
65
65
/// See [`SocketAddr`] for a type encompassing both IPv4 and IPv6 socket addresses.
66
66
///
67
- /// The size of a SocketAddrV4 struct may vary depending on the target operating
67
+ /// The size of a ` SocketAddrV4` struct may vary depending on the target operating
68
68
/// system.
69
69
///
70
70
/// [IETF RFC 793]: https://tools.ietf.org/html/rfc793
@@ -94,7 +94,7 @@ pub struct SocketAddrV4 { inner: c::sockaddr_in }
94
94
///
95
95
/// See [`SocketAddr`] for a type encompassing both IPv4 and IPv6 socket addresses.
96
96
///
97
- /// The size of a SocketAddrV6 struct may vary depending on the target operating
97
+ /// The size of a ` SocketAddrV6` struct may vary depending on the target operating
98
98
/// system.
99
99
///
100
100
/// [IETF RFC 2553, Section 3.3]: https://tools.ietf.org/html/rfc2553#section-3.3
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ use sys_common::{AsInner, FromInner};
26
26
/// This enum can contain either an [`Ipv4Addr`] or an [`Ipv6Addr`], see their
27
27
/// respective documentation for more details.
28
28
///
29
- /// The size of an IpAddr instance may vary depending on the target operating
29
+ /// The size of an ` IpAddr` instance may vary depending on the target operating
30
30
/// system.
31
31
///
32
32
/// [`Ipv4Addr`]: ../../std/net/struct.Ipv4Addr.html
@@ -64,7 +64,7 @@ pub enum IpAddr {
64
64
///
65
65
/// See [`IpAddr`] for a type encompassing both IPv4 and IPv6 addresses.
66
66
///
67
- /// The size of an Ipv4Addr struct may vary depending on the target operating
67
+ /// The size of an ` Ipv4Addr` struct may vary depending on the target operating
68
68
/// system.
69
69
///
70
70
/// [IETF RFC 791]: https://tools.ietf.org/html/rfc791
@@ -99,7 +99,7 @@ pub struct Ipv4Addr {
99
99
///
100
100
/// See [`IpAddr`] for a type encompassing both IPv4 and IPv6 addresses.
101
101
///
102
- /// The size of an Ipv6Addr struct may vary depending on the target operating
102
+ /// The size of an ` Ipv6Addr` struct may vary depending on the target operating
103
103
/// system.
104
104
///
105
105
/// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ pub use core::time::Duration;
49
49
/// allows measuring the duration between two instants (or comparing two
50
50
/// instants).
51
51
///
52
- /// The size of an Instant struct may vary depending on the target operating
52
+ /// The size of an ` Instant` struct may vary depending on the target operating
53
53
/// system.
54
54
///
55
55
/// Example:
@@ -91,7 +91,7 @@ pub struct Instant(time::Instant);
91
91
/// fixed point in time, a `SystemTime` can be converted to a human-readable time,
92
92
/// or perhaps some other string representation.
93
93
///
94
- /// The size of a SystemTime struct may vary depending on the target operating
94
+ /// The size of a ` SystemTime` struct may vary depending on the target operating
95
95
/// system.
96
96
///
97
97
/// [`Instant`]: ../../std/time/struct.Instant.html
You can’t perform that action at this time.
0 commit comments