File tree 1 file changed +0
-6
lines changed
1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -1951,7 +1951,6 @@ pub fn create_dir<P: AsRef<Path>>(path: P) -> io::Result<()> {
1951
1951
/// Ok(())
1952
1952
/// }
1953
1953
/// ```
1954
- #[ doc( alias = "mkdir" ) ]
1955
1954
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1956
1955
pub fn create_dir_all < P : AsRef < Path > > ( path : P ) -> io:: Result < ( ) > {
1957
1956
DirBuilder :: new ( ) . recursive ( true ) . create ( path. as_ref ( ) )
@@ -1987,9 +1986,7 @@ pub fn create_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
1987
1986
/// Ok(())
1988
1987
/// }
1989
1988
/// ```
1990
- #[ doc( alias = "rm" ) ]
1991
1989
#[ doc( alias = "rmdir" ) ]
1992
- #[ doc( alias = "delete" ) ]
1993
1990
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1994
1991
pub fn remove_dir < P : AsRef < Path > > ( path : P ) -> io:: Result < ( ) > {
1995
1992
fs_imp:: rmdir ( path. as_ref ( ) )
@@ -2027,9 +2024,6 @@ pub fn remove_dir<P: AsRef<Path>>(path: P) -> io::Result<()> {
2027
2024
/// Ok(())
2028
2025
/// }
2029
2026
/// ```
2030
- #[ doc( alias = "rm" ) ]
2031
- #[ doc( alias = "rmdir" ) ]
2032
- #[ doc( alias = "delete" ) ]
2033
2027
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2034
2028
pub fn remove_dir_all < P : AsRef < Path > > ( path : P ) -> io:: Result < ( ) > {
2035
2029
fs_imp:: remove_dir_all ( path. as_ref ( ) )
You can’t perform that action at this time.
0 commit comments