Skip to content

Commit

Permalink
Auto merge of #49521 - mbrubeck:fs_read_write_bytes, r=TimNN
Browse files Browse the repository at this point in the history
fs_read_write_bytes stabilized in 1.26.0

Fix the stabilization attributes from #49422 because it merged before 1.26 branched to beta.

r? @TimNN
  • Loading branch information
bors committed Mar 31, 2018
2 parents e38eca6 + 504916c commit 517f240
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ fn initial_buffer_size(file: &File) -> usize {
/// Ok(())
/// }
/// ```
#[stable(feature = "fs_read_write_bytes", since = "1.27.0")]
#[stable(feature = "fs_read_write_bytes", since = "1.26.0")]
pub fn read<P: AsRef<Path>>(path: P) -> io::Result<Vec<u8>> {
let mut file = File::open(path)?;
let mut bytes = Vec::with_capacity(initial_buffer_size(&file));
Expand Down Expand Up @@ -330,7 +330,7 @@ pub fn read_string<P: AsRef<Path>>(path: P) -> io::Result<String> {
/// Ok(())
/// }
/// ```
#[stable(feature = "fs_read_write_bytes", since = "1.27.0")]
#[stable(feature = "fs_read_write_bytes", since = "1.26.0")]
pub fn write<P: AsRef<Path>, C: AsRef<[u8]>>(path: P, contents: C) -> io::Result<()> {
File::create(path)?.write_all(contents.as_ref())
}
Expand Down

0 comments on commit 517f240

Please sign in to comment.