Rollup merge of #107494 - lebensterben:patch-1, r=JohnTitor

fix link in std::path::Path::display()

The link `Debug` points to should be the trait `Debug`, not the macro `Debug`.
This commit is contained in:
Yuki Okushi 2023-01-31 11:46:26 +09:00 committed by GitHub
commit 150340bafd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2688,6 +2688,7 @@ pub fn iter(&self) -> Iter<'_> {
/// escapes the path please use [`Debug`] instead.
///
/// [`Display`]: fmt::Display
/// [`Debug`]: fmt::Debug
///
/// # Examples
///