Skip to content

Commit 2d88c52

Browse files
committed
Tracking issue add.
1 parent 89c0f50 commit 2d88c52

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/std/src/fs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,7 @@ impl Metadata {
10261026
/// Ok(())
10271027
/// }
10281028
/// ```
1029-
#[unstable(feature = "is_symlink", issue = "none")]
1029+
#[unstable(feature = "is_symlink", issue = "85748")]
10301030
pub fn is_symlink(&self) -> bool {
10311031
self.file_type().is_symlink()
10321032
}

library/std/src/path.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2588,7 +2588,7 @@ impl Path {
25882588
/// assert_eq!(link_path.is_symlink(), true);
25892589
/// assert_eq!(link_path.exists(), false);
25902590
/// ```
2591-
#[unstable(feature = "is_symlink", issue = "none")]
2591+
#[unstable(feature = "is_symlink", issue = "85748")]
25922592
pub fn is_symlink(&self) -> bool {
25932593
fs::symlink_metadata(self).map(|m| m.is_symlink()).unwrap_or(false)
25942594
}

0 commit comments

Comments
 (0)