Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2ab86f0

Browse files
committedSep 24, 2024
Add a tracking issue for file_buffered
1 parent 963cefb commit 2ab86f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎std/src/fs.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ impl File {
405405
/// Ok(())
406406
/// }
407407
/// ```
408-
#[unstable(feature = "file_buffered", issue = "none")]
408+
#[unstable(feature = "file_buffered", issue = "130804")]
409409
pub fn open_buffered<P: AsRef<Path>>(path: P) -> io::Result<io::BufReader<File>> {
410410
// Allocate the buffer *first* so we don't affect the filesystem otherwise.
411411
let buffer = io::BufReader::<Self>::try_new_buffer()?;
@@ -473,7 +473,7 @@ impl File {
473473
/// Ok(())
474474
/// }
475475
/// ```
476-
#[unstable(feature = "file_buffered", issue = "none")]
476+
#[unstable(feature = "file_buffered", issue = "130804")]
477477
pub fn create_buffered<P: AsRef<Path>>(path: P) -> io::Result<io::BufWriter<File>> {
478478
// Allocate the buffer *first* so we don't affect the filesystem otherwise.
479479
let buffer = io::BufWriter::<Self>::try_new_buffer()?;

0 commit comments

Comments
 (0)
Please sign in to comment.