Skip to content

Commit 88a29e6

Browse files
author
Federico Ponzi
committed
Updates stability attributes to the current nightly version
1 parent ec7f9b9 commit 88a29e6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

library/std/src/io/stdio.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ impl Write for Stdout {
607607
}
608608
}
609609

610-
#[stable(feature = "write_mt", since = "1.47.0")]
610+
#[stable(feature = "write_mt", since = "1.48.0")]
611611
impl Write for &Stdout {
612612
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
613613
self.lock().write(buf)
@@ -810,7 +810,7 @@ impl Write for Stderr {
810810
}
811811
}
812812

813-
#[stable(feature = "write_mt", since = "1.47.0")]
813+
#[stable(feature = "write_mt", since = "1.48.0")]
814814
impl Write for &Stderr {
815815
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
816816
self.lock().write(buf)

library/std/src/io/util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ impl Write for Sink {
248248
}
249249
}
250250

251-
#[stable(feature = "write_mt", since = "1.47.0")]
251+
#[stable(feature = "write_mt", since = "1.48.0")]
252252
impl Write for &Sink {
253253
#[inline]
254254
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {

0 commit comments

Comments
 (0)