Skip to content

Commit c0c3c12

Browse files
authored
Rollup merge of #105137 - yjhn:patch-1, r=Dylan-DPC
Add tracking issue number for `file_create_new` feature It was missing a tracking issue, so I opened one (#105135).
2 parents 7c06805 + b34a2ac commit c0c3c12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

std/src/fs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ impl File {
401401
/// Ok(())
402402
/// }
403403
/// ```
404-
#[unstable(feature = "file_create_new", issue = "none")]
404+
#[unstable(feature = "file_create_new", issue = "105135")]
405405
pub fn create_new<P: AsRef<Path>>(path: P) -> io::Result<File> {
406406
OpenOptions::new().read(true).write(true).create_new(true).open(path.as_ref())
407407
}

0 commit comments

Comments
 (0)