@@ -947,7 +947,7 @@ impl DirBuilderExt for fs::DirBuilder {
947
947
/// Ok(())
948
948
/// }
949
949
/// ```
950
- #[ unstable( feature = "unix_chown" , issue = "none " ) ]
950
+ #[ unstable( feature = "unix_chown" , issue = "88989 " ) ]
951
951
pub fn chown < P : AsRef < Path > > ( dir : P , uid : Option < u32 > , gid : Option < u32 > ) -> io:: Result < ( ) > {
952
952
sys:: fs:: chown ( dir. as_ref ( ) , uid. unwrap_or ( u32:: MAX ) , gid. unwrap_or ( u32:: MAX ) )
953
953
}
@@ -968,7 +968,7 @@ pub fn chown<P: AsRef<Path>>(dir: P, uid: Option<u32>, gid: Option<u32>) -> io::
968
968
/// Ok(())
969
969
/// }
970
970
/// ```
971
- #[ unstable( feature = "unix_chown" , issue = "none " ) ]
971
+ #[ unstable( feature = "unix_chown" , issue = "88989 " ) ]
972
972
pub fn fchown < F : AsFd > ( fd : F , uid : Option < u32 > , gid : Option < u32 > ) -> io:: Result < ( ) > {
973
973
sys:: fs:: fchown ( fd. as_fd ( ) . as_raw_fd ( ) , uid. unwrap_or ( u32:: MAX ) , gid. unwrap_or ( u32:: MAX ) )
974
974
}
@@ -989,7 +989,7 @@ pub fn fchown<F: AsFd>(fd: F, uid: Option<u32>, gid: Option<u32>) -> io::Result<
989
989
/// Ok(())
990
990
/// }
991
991
/// ```
992
- #[ unstable( feature = "unix_chown" , issue = "none " ) ]
992
+ #[ unstable( feature = "unix_chown" , issue = "88989 " ) ]
993
993
pub fn lchown < P : AsRef < Path > > ( dir : P , uid : Option < u32 > , gid : Option < u32 > ) -> io:: Result < ( ) > {
994
994
sys:: fs:: lchown ( dir. as_ref ( ) , uid. unwrap_or ( u32:: MAX ) , gid. unwrap_or ( u32:: MAX ) )
995
995
}
0 commit comments