Skip to content

Commit

Permalink
Rollup merge of #98662 - LucasDumont:document_fs_write, r=thomcc
Browse files Browse the repository at this point in the history
Add std::fs::write documentation precision

Fixes #97947.

As mentioned in #97947, the documentation is updated
  • Loading branch information
JohnTitor authored Jul 16, 2022
2 parents bf9ed99 + 07a0fd2 commit 06eb90e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions library/std/src/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,9 @@ pub fn read_to_string<P: AsRef<Path>>(path: P) -> io::Result<String> {
/// This function will create a file if it does not exist,
/// and will entirely replace its contents if it does.
///
/// Depending on the platform, this function may fail if the
/// full directory path does not exist.
///
/// This is a convenience function for using [`File::create`] and [`write_all`]
/// with fewer imports.
///
Expand Down Expand Up @@ -349,6 +352,9 @@ impl File {
/// This function will create a file if it does not exist,
/// and will truncate it if it does.
///
/// Depending on the platform, this function may fail if the
/// full directory path does not exist.
///
/// See the [`OpenOptions::open`] function for more details.
///
/// # Examples
Expand Down

0 comments on commit 06eb90e

Please sign in to comment.