Review fixes + doc-features

This commit is contained in:
Max Wase
2021-05-27 18:02:21 +03:00
parent 2d88c52ab7
commit a0958df56f
2 changed files with 8 additions and 6 deletions

View File

@@ -1007,17 +1007,18 @@ impl Metadata {
self.file_type().is_file()
}
/// Returns `true` if this metadata is for a symbolic link file.
/// Returns `true` if this metadata is for a symbolic link.
///
/// # Examples
///
/// ```no_run
/// #![feature(is_symlink)]
/// use std::fs;
/// use std::path::Path;
/// use std::os::unix::fs::symlink;
///
/// fn main() -> std::io::Result<()> {
/// let link_path = Path::new("/link");
/// let link_path = Path::new("link");
/// symlink("/origin_does_not_exists/", link_path)?;
///
/// let metadata = fs::symlink_metadata(link_path)?;