about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAriel Davis <ariel.z.davis@icloud.com>2022-10-09 21:44:44 -0700
committerAriel Davis <ariel.z.davis@icloud.com>2022-10-09 21:44:44 -0700
commit61519b8cf1c768fd3683f38a8fcfa96dc0138cdb (patch)
tree664f8db92081073dcfcf58111c84e384737d07de
parent1a7c203e7f89f92598a793c6f6406735c024e7ee (diff)
downloadrust-61519b8cf1c768fd3683f38a8fcfa96dc0138cdb.tar.gz
rust-61519b8cf1c768fd3683f38a8fcfa96dc0138cdb.zip
Add basename and dirname aliases
-rw-r--r--library/std/src/fs.rs1
-rw-r--r--library/std/src/path.rs2
2 files changed, 3 insertions, 0 deletions
diff --git a/library/std/src/fs.rs b/library/std/src/fs.rs
index c6c78dc3939..190608e43b9 100644
--- a/library/std/src/fs.rs
+++ b/library/std/src/fs.rs
@@ -1670,6 +1670,7 @@ impl DirEntry {
     /// }
     /// ```
     #[must_use]
+    #[doc(alias = "basename")]
     #[stable(feature = "dir_entry_ext", since = "1.1.0")]
     pub fn file_name(&self) -> OsString {
         self.0.file_name()
diff --git a/library/std/src/path.rs b/library/std/src/path.rs
index 4f9dff1ef03..9d63281627d 100644
--- a/library/std/src/path.rs
+++ b/library/std/src/path.rs
@@ -2158,6 +2158,7 @@ impl Path {
     /// assert_eq!(grand_parent.parent(), None);
     /// ```
     #[stable(feature = "rust1", since = "1.0.0")]
+    #[doc(alias = "dirname")]
     #[must_use]
     pub fn parent(&self) -> Option<&Path> {
         let mut comps = self.components();
@@ -2225,6 +2226,7 @@ impl Path {
     /// assert_eq!(None, Path::new("/").file_name());
     /// ```
     #[stable(feature = "rust1", since = "1.0.0")]
+    #[doc(alias = "basename")]
     #[must_use]
     pub fn file_name(&self) -> Option<&OsStr> {
         self.components().next_back().and_then(|p| match p {