File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ( ) ?;
You can’t perform that action at this time.
0 commit comments