about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2024-09-24 15:06:55 -0700
committerJosh Stone <jistone@redhat.com>2024-09-24 15:06:55 -0700
commit458537ebc0e7d893103e03450f8830061bab1b2d (patch)
tree3d9b1a0dff288a6d09cacccdb4cb4baf18b5a480
parent0999b019f8e0a96ca7aac9fd5ec095d59b0806ec (diff)
downloadrust-458537ebc0e7d893103e03450f8830061bab1b2d.tar.gz
rust-458537ebc0e7d893103e03450f8830061bab1b2d.zip
Add a tracking issue for `file_buffered`
-rw-r--r--library/std/src/fs.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/fs.rs b/library/std/src/fs.rs
index b8e3f316beb..db7867337dd 100644
--- a/library/std/src/fs.rs
+++ b/library/std/src/fs.rs
@@ -405,7 +405,7 @@ impl File {
     ///     Ok(())
     /// }
     /// ```
-    #[unstable(feature = "file_buffered", issue = "none")]
+    #[unstable(feature = "file_buffered", issue = "130804")]
     pub fn open_buffered<P: AsRef<Path>>(path: P) -> io::Result<io::BufReader<File>> {
         // Allocate the buffer *first* so we don't affect the filesystem otherwise.
         let buffer = io::BufReader::<Self>::try_new_buffer()?;
@@ -473,7 +473,7 @@ impl File {
     ///     Ok(())
     /// }
     /// ```
-    #[unstable(feature = "file_buffered", issue = "none")]
+    #[unstable(feature = "file_buffered", issue = "130804")]
     pub fn create_buffered<P: AsRef<Path>>(path: P) -> io::Result<io::BufWriter<File>> {
         // Allocate the buffer *first* so we don't affect the filesystem otherwise.
         let buffer = io::BufWriter::<Self>::try_new_buffer()?;