Skip to content

Commit e63b1a0

Browse files
committed
Remove "and may change between Rust releases"
1 parent 908328f commit e63b1a0

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

src/libstd/io/stdio.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ thread_local! {
3232
/// the `std::io::stdio::stdin_raw` function.
3333
///
3434
/// The size of a StdinRaw struct may vary depending on the target operating
35-
/// system, and may change between Rust releases.
35+
/// system.
3636
struct StdinRaw(stdio::Stdin);
3737

3838
/// A handle to a raw instance of the standard output stream of this process.
@@ -41,7 +41,7 @@ struct StdinRaw(stdio::Stdin);
4141
/// the `std::io::stdio::stdout_raw` function.
4242
///
4343
/// The size of a StdoutRaw struct may vary depending on the target operating
44-
/// system, and may change between Rust releases.
44+
/// system.
4545
struct StdoutRaw(stdio::Stdout);
4646

4747
/// A handle to a raw instance of the standard output stream of this process.
@@ -50,7 +50,7 @@ struct StdoutRaw(stdio::Stdout);
5050
/// the `std::io::stdio::stderr_raw` function.
5151
///
5252
/// The size of a StderrRaw struct may vary depending on the target operating
53-
/// system, and may change between Rust releases.
53+
/// system.
5454
struct StderrRaw(stdio::Stderr);
5555

5656
/// Constructs a new raw handle to the standard input of this process.

src/libstd/net/addr.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use slice;
2929
/// [`SocketAddrV6`]'s respective documentation for more details.
3030
///
3131
/// The size of a SocketAddr instance may vary depending on the target operating
32-
/// system, and may change between Rust releases.
32+
/// system.
3333
///
3434
/// [IP address]: ../../std/net/enum.IpAddr.html
3535
/// [`SocketAddrV4`]: ../../std/net/struct.SocketAddrV4.html
@@ -65,7 +65,7 @@ pub enum SocketAddr {
6565
/// See [`SocketAddr`] for a type encompassing both IPv4 and IPv6 socket addresses.
6666
///
6767
/// The size of a SocketAddrV4 struct may vary depending on the target operating
68-
/// system, and may change between Rust releases.
68+
/// system.
6969
///
7070
/// [IETF RFC 793]: https://tools.ietf.org/html/rfc793
7171
/// [IPv4 address]: ../../std/net/struct.Ipv4Addr.html
@@ -95,7 +95,7 @@ pub struct SocketAddrV4 { inner: c::sockaddr_in }
9595
/// See [`SocketAddr`] for a type encompassing both IPv4 and IPv6 socket addresses.
9696
///
9797
/// The size of a SocketAddrV6 struct may vary depending on the target operating
98-
/// system, and may change between Rust releases.
98+
/// system.
9999
///
100100
/// [IETF RFC 2553, Section 3.3]: https://tools.ietf.org/html/rfc2553#section-3.3
101101
/// [IPv6 address]: ../../std/net/struct.Ipv6Addr.html

src/libstd/net/ip.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use sys_common::{AsInner, FromInner};
2727
/// respective documentation for more details.
2828
///
2929
/// The size of an IpAddr instance may vary depending on the target operating
30-
/// system, and may change between Rust releases.
30+
/// system.
3131
///
3232
/// [`Ipv4Addr`]: ../../std/net/struct.Ipv4Addr.html
3333
/// [`Ipv6Addr`]: ../../std/net/struct.Ipv6Addr.html
@@ -65,7 +65,7 @@ pub enum IpAddr {
6565
/// See [`IpAddr`] for a type encompassing both IPv4 and IPv6 addresses.
6666
///
6767
/// The size of an Ipv4Addr struct may vary depending on the target operating
68-
/// system, and may change between Rust releases.
68+
/// system.
6969
///
7070
/// [IETF RFC 791]: https://tools.ietf.org/html/rfc791
7171
/// [`IpAddr`]: ../../std/net/enum.IpAddr.html
@@ -100,7 +100,7 @@ pub struct Ipv4Addr {
100100
/// See [`IpAddr`] for a type encompassing both IPv4 and IPv6 addresses.
101101
///
102102
/// The size of an Ipv6Addr struct may vary depending on the target operating
103-
/// system, and may change between Rust releases.
103+
/// system.
104104
///
105105
/// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291
106106
/// [`IpAddr`]: ../../std/net/enum.IpAddr.html

src/libstd/time.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ pub use core::time::Duration;
5050
/// instants).
5151
///
5252
/// The size of an Instant struct may vary depending on the target operating
53-
/// system, and may change between Rust releases.
53+
/// system.
5454
///
5555
/// Example:
5656
///
@@ -92,7 +92,7 @@ pub struct Instant(time::Instant);
9292
/// or perhaps some other string representation.
9393
///
9494
/// The size of a SystemTime struct may vary depending on the target operating
95-
/// system, and may change between Rust releases.
95+
/// system.
9696
///
9797
/// [`Instant`]: ../../std/time/struct.Instant.html
9898
/// [`Result`]: ../../std/result/enum.Result.html

0 commit comments

Comments
 (0)