about summary refs log tree commit diff
path: root/library/std/src/io/mod.rs
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2021-05-01 00:38:01 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2021-08-24 18:26:18 +0100
commitdb13636f036db4b7988fafd2288dc73ce46a1e53 (patch)
tree4f2bd91b6ac3a9298554bea69abf6af6d1ac51c8 /library/std/src/io/mod.rs
parent47ab5f7ce27397310bd8359b8db1504fbf8a9b59 (diff)
downloadrust-db13636f036db4b7988fafd2288dc73ce46a1e53.tar.gz
rust-db13636f036db4b7988fafd2288dc73ce46a1e53.zip
Stabilise BufWriter::into_parts
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Diffstat (limited to 'library/std/src/io/mod.rs')
-rw-r--r--library/std/src/io/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/io/mod.rs b/library/std/src/io/mod.rs
index 28254fea0d3..e8466fa06b8 100644
--- a/library/std/src/io/mod.rs
+++ b/library/std/src/io/mod.rs
@@ -264,7 +264,7 @@ use crate::sys_common::memchr;
 
 #[stable(feature = "rust1", since = "1.0.0")]
 pub use self::buffered::IntoInnerError;
-#[unstable(feature = "bufwriter_into_parts", issue = "80690")]
+#[stable(feature = "bufwriter_into_parts", since = "1.56.0")]
 pub use self::buffered::WriterPanicked;
 #[stable(feature = "rust1", since = "1.0.0")]
 pub use self::buffered::{BufReader, BufWriter, LineWriter};