File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1026,7 +1026,7 @@ impl Metadata {
1026
1026
/// Ok(())
1027
1027
/// }
1028
1028
/// ```
1029
- #[ unstable( feature = "is_symlink" , issue = "none " ) ]
1029
+ #[ unstable( feature = "is_symlink" , issue = "85748 " ) ]
1030
1030
pub fn is_symlink ( & self ) -> bool {
1031
1031
self . file_type ( ) . is_symlink ( )
1032
1032
}
Original file line number Diff line number Diff line change @@ -2588,7 +2588,7 @@ impl Path {
2588
2588
/// assert_eq!(link_path.is_symlink(), true);
2589
2589
/// assert_eq!(link_path.exists(), false);
2590
2590
/// ```
2591
- #[ unstable( feature = "is_symlink" , issue = "none " ) ]
2591
+ #[ unstable( feature = "is_symlink" , issue = "85748 " ) ]
2592
2592
pub fn is_symlink ( & self ) -> bool {
2593
2593
fs:: symlink_metadata ( self ) . map ( |m| m. is_symlink ( ) ) . unwrap_or ( false )
2594
2594
}
You can’t perform that action at this time.
0 commit comments