1
Fork 0

Typos fix

This commit is contained in:
Maxwase 2022-01-14 00:17:11 +03:00
parent 256721ee51
commit a7092f91a6
4 changed files with 5 additions and 5 deletions

View file

@ -2806,7 +2806,7 @@ impl Path {
/// use std::os::unix::fs::symlink;
///
/// let link_path = Path::new("link");
/// symlink("/origin_does_not_exists/", link_path).unwrap();
/// symlink("/origin_does_not_exist/", link_path).unwrap();
/// assert_eq!(link_path.is_symlink(), true);
/// assert_eq!(link_path.exists(), false);
/// ```