about summary refs log tree commit diff
path: root/library/std/src/path.rs
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2025-05-20 16:03:04 +0200
committerMichael Goulet <michael@errs.io>2025-05-20 16:03:04 +0200
commit7b5ea0e7f5bece3ddde9a5891c853322cfc6c0f8 (patch)
tree6aac5957d2bbbbdd1ae9aa5b66e037cab2affbfe /library/std/src/path.rs
parentb10555674f355aca2bfe974e50a0b9ab48eb1d87 (diff)
downloadrust-7b5ea0e7f5bece3ddde9a5891c853322cfc6c0f8.tar.gz
rust-7b5ea0e7f5bece3ddde9a5891c853322cfc6c0f8.zip
use Self alias in self types rather than manually substituting it
Diffstat (limited to 'library/std/src/path.rs')
-rw-r--r--library/std/src/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/path.rs b/library/std/src/path.rs
index 1a4a7aa7448..7959c633858 100644
--- a/library/std/src/path.rs
+++ b/library/std/src/path.rs
@@ -3163,7 +3163,7 @@ impl Path {
     /// allocating.
     #[stable(feature = "into_boxed_path", since = "1.20.0")]
     #[must_use = "`self` will be dropped if the result is not used"]
-    pub fn into_path_buf(self: Box<Path>) -> PathBuf {
+    pub fn into_path_buf(self: Box<Self>) -> PathBuf {
         let rw = Box::into_raw(self) as *mut OsStr;
         let inner = unsafe { Box::from_raw(rw) };
         PathBuf { inner: OsString::from(inner) }