From da886da718a0f7bb25b09be757b9dc386625f2b4 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Sat, 7 Oct 2023 12:19:01 +0100 Subject: [PATCH] Corrected documentation links - Corrected superfluous documentation links reported by cargo doc in Rust 1.73.0 (not picked up in previous versions). --- crates/rubedo/src/std.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/rubedo/src/std.rs b/crates/rubedo/src/std.rs index d976b27..5e07554 100644 --- a/crates/rubedo/src/std.rs +++ b/crates/rubedo/src/std.rs @@ -170,7 +170,7 @@ pub trait PathExt { /// /// # See Also /// - /// * [`std::path::Component`](std::path::Component) + /// * [`std::path::Component`] /// * [`std::path::Path::components()`] /// fn strip_parentdirs(&self, remove_all: bool) -> PathBuf; @@ -197,8 +197,8 @@ pub trait PathExt { /// * [`std::path::Path::has_root()`] /// * [`std::path::Path::is_absolute()`] /// * [`std::path::Path::strip_prefix()`] - /// * [`std::path::Prefix`](std::path::Prefix) - /// * [`std::path::PrefixComponent`](std::path::PrefixComponent) + /// * [`std::path::Prefix`] + /// * [`std::path::PrefixComponent`] /// fn strip_root(&self) -> PathBuf; }