1
Fork 0

Fix doc of std::fs::canonicalize

Point out that the final component of the path name might be a filename
(and not a directory name). Previously, the doc said that all components
of the path must be directory names, when it actually only ment all but
the final one.

Fixes #54056.
This commit is contained in:
Tobias Bucher 2018-12-15 18:51:08 +01:00
parent 0a1b2267e4
commit f61686ae70

View file

@ -1729,7 +1729,7 @@ pub fn read_link<P: AsRef<Path>>(path: P) -> io::Result<PathBuf> {
/// limited to just these cases:
///
/// * `path` does not exist.
/// * A component in path is not a directory.
/// * A non-final component in path is not a directory.
///
/// # Examples
///