File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ thread_local! {
32
32
/// the `std::io::stdio::stdin_raw` function.
33
33
///
34
34
/// The size of a StdinRaw struct may vary depending on the target operating
35
- /// system, and may change between Rust releases .
35
+ /// system.
36
36
struct StdinRaw ( stdio:: Stdin ) ;
37
37
38
38
/// A handle to a raw instance of the standard output stream of this process.
@@ -41,7 +41,7 @@ struct StdinRaw(stdio::Stdin);
41
41
/// the `std::io::stdio::stdout_raw` function.
42
42
///
43
43
/// The size of a StdoutRaw struct may vary depending on the target operating
44
- /// system, and may change between Rust releases .
44
+ /// system.
45
45
struct StdoutRaw ( stdio:: Stdout ) ;
46
46
47
47
/// A handle to a raw instance of the standard output stream of this process.
@@ -50,7 +50,7 @@ struct StdoutRaw(stdio::Stdout);
50
50
/// the `std::io::stdio::stderr_raw` function.
51
51
///
52
52
/// The size of a StderrRaw struct may vary depending on the target operating
53
- /// system, and may change between Rust releases .
53
+ /// system.
54
54
struct StderrRaw ( stdio:: Stderr ) ;
55
55
56
56
/// Constructs a new raw handle to the standard input of this process.
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ use slice;
29
29
/// [`SocketAddrV6`]'s respective documentation for more details.
30
30
///
31
31
/// The size of a SocketAddr instance may vary depending on the target operating
32
- /// system, and may change between Rust releases .
32
+ /// system.
33
33
///
34
34
/// [IP address]: ../../std/net/enum.IpAddr.html
35
35
/// [`SocketAddrV4`]: ../../std/net/struct.SocketAddrV4.html
@@ -65,7 +65,7 @@ pub enum SocketAddr {
65
65
/// See [`SocketAddr`] for a type encompassing both IPv4 and IPv6 socket addresses.
66
66
///
67
67
/// The size of a SocketAddrV4 struct may vary depending on the target operating
68
- /// system, and may change between Rust releases .
68
+ /// system.
69
69
///
70
70
/// [IETF RFC 793]: https://tools.ietf.org/html/rfc793
71
71
/// [IPv4 address]: ../../std/net/struct.Ipv4Addr.html
@@ -95,7 +95,7 @@ pub struct SocketAddrV4 { inner: c::sockaddr_in }
95
95
/// See [`SocketAddr`] for a type encompassing both IPv4 and IPv6 socket addresses.
96
96
///
97
97
/// The size of a SocketAddrV6 struct may vary depending on the target operating
98
- /// system, and may change between Rust releases .
98
+ /// system.
99
99
///
100
100
/// [IETF RFC 2553, Section 3.3]: https://tools.ietf.org/html/rfc2553#section-3.3
101
101
/// [IPv6 address]: ../../std/net/struct.Ipv6Addr.html
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ use sys_common::{AsInner, FromInner};
27
27
/// respective documentation for more details.
28
28
///
29
29
/// The size of an IpAddr instance may vary depending on the target operating
30
- /// system, and may change between Rust releases .
30
+ /// system.
31
31
///
32
32
/// [`Ipv4Addr`]: ../../std/net/struct.Ipv4Addr.html
33
33
/// [`Ipv6Addr`]: ../../std/net/struct.Ipv6Addr.html
@@ -65,7 +65,7 @@ pub enum IpAddr {
65
65
/// See [`IpAddr`] for a type encompassing both IPv4 and IPv6 addresses.
66
66
///
67
67
/// The size of an Ipv4Addr struct may vary depending on the target operating
68
- /// system, and may change between Rust releases .
68
+ /// system.
69
69
///
70
70
/// [IETF RFC 791]: https://tools.ietf.org/html/rfc791
71
71
/// [`IpAddr`]: ../../std/net/enum.IpAddr.html
@@ -100,7 +100,7 @@ pub struct Ipv4Addr {
100
100
/// See [`IpAddr`] for a type encompassing both IPv4 and IPv6 addresses.
101
101
///
102
102
/// The size of an Ipv6Addr struct may vary depending on the target operating
103
- /// system, and may change between Rust releases .
103
+ /// system.
104
104
///
105
105
/// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291
106
106
/// [`IpAddr`]: ../../std/net/enum.IpAddr.html
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ pub use core::time::Duration;
50
50
/// instants).
51
51
///
52
52
/// The size of an Instant struct may vary depending on the target operating
53
- /// system, and may change between Rust releases .
53
+ /// system.
54
54
///
55
55
/// Example:
56
56
///
@@ -92,7 +92,7 @@ pub struct Instant(time::Instant);
92
92
/// or perhaps some other string representation.
93
93
///
94
94
/// The size of a SystemTime struct may vary depending on the target operating
95
- /// system, and may change between Rust releases .
95
+ /// system.
96
96
///
97
97
/// [`Instant`]: ../../std/time/struct.Instant.html
98
98
/// [`Result`]: ../../std/result/enum.Result.html
You can’t perform that action at this time.
0 commit comments