Auto merge of #74896 - imbolc:patch-1, r=kennytm

Update `fs::remove_file` docs

Mention that absence of file causes an error
This commit is contained in:
bors 2020-07-29 08:52:01 +00:00
commit 0dd362ec17
1 changed files with 1 additions and 0 deletions

View File

@ -1574,6 +1574,7 @@ impl AsInner<fs_imp::DirEntry> for DirEntry {
/// limited to just these cases:
///
/// * `path` points to a directory.
/// * The file doesn't exist.
/// * The user lacks permissions to remove the file.
///
/// # Examples