@@ -947,7 +947,7 @@ impl DirBuilderExt for fs::DirBuilder {
947947/// Ok(())
948948/// }
949949/// ```
950- #[ unstable( feature = "unix_chown" , issue = "none " ) ]
950+ #[ unstable( feature = "unix_chown" , issue = "88989 " ) ]
951951pub fn chown < P : AsRef < Path > > ( dir : P , uid : Option < u32 > , gid : Option < u32 > ) -> io:: Result < ( ) > {
952952 sys:: fs:: chown ( dir. as_ref ( ) , uid. unwrap_or ( u32:: MAX ) , gid. unwrap_or ( u32:: MAX ) )
953953}
@@ -968,7 +968,7 @@ pub fn chown<P: AsRef<Path>>(dir: P, uid: Option<u32>, gid: Option<u32>) -> io::
968968/// Ok(())
969969/// }
970970/// ```
971- #[ unstable( feature = "unix_chown" , issue = "none " ) ]
971+ #[ unstable( feature = "unix_chown" , issue = "88989 " ) ]
972972pub fn fchown < F : AsFd > ( fd : F , uid : Option < u32 > , gid : Option < u32 > ) -> io:: Result < ( ) > {
973973 sys:: fs:: fchown ( fd. as_fd ( ) . as_raw_fd ( ) , uid. unwrap_or ( u32:: MAX ) , gid. unwrap_or ( u32:: MAX ) )
974974}
@@ -989,7 +989,7 @@ pub fn fchown<F: AsFd>(fd: F, uid: Option<u32>, gid: Option<u32>) -> io::Result<
989989/// Ok(())
990990/// }
991991/// ```
992- #[ unstable( feature = "unix_chown" , issue = "none " ) ]
992+ #[ unstable( feature = "unix_chown" , issue = "88989 " ) ]
993993pub fn lchown < P : AsRef < Path > > ( dir : P , uid : Option < u32 > , gid : Option < u32 > ) -> io:: Result < ( ) > {
994994 sys:: fs:: lchown ( dir. as_ref ( ) , uid. unwrap_or ( u32:: MAX ) , gid. unwrap_or ( u32:: MAX ) )
995995}
0 commit comments