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 {
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 }
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments