diff options
| -rw-r--r-- | library/std/src/fs.rs | 4 |
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()?; |
