Rollup merge of #98662 - LucasDumont:document_fs_write, r=thomcc

Add std::fs::write documentation precision

Fixes #97947.

As mentioned in #97947, the documentation is updated
This commit is contained in:
Yuki Okushi 2022-07-16 17:53:00 +09:00 committed by GitHub
commit 06eb90ef63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -295,6 +295,9 @@ fn inner(path: &Path) -> 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.
///
@ -349,6 +352,9 @@ pub fn open<P: AsRef<Path>>(path: P) -> io::Result<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