From 984406fea1075dd5b6837567cd91c3b9e19627ac Mon Sep 17 00:00:00 2001 From: Be Date: Mon, 29 Jan 2024 07:08:46 -0600 Subject: [PATCH] fix broken intradoc links (#922) --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index cd5f393e6..107910f72 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2884,7 +2884,7 @@ impl Build { /// Get the archiver that's in use for this configuration. /// /// This will return a result instead of panicing; - /// see [`get_archiver()`] for the complete description. + /// see [`Self::get_archiver`] for the complete description. pub fn try_get_archiver(&self) -> Result { Ok(self.try_get_archiver_and_flags()?.0) } @@ -2935,7 +2935,7 @@ impl Build { /// Get the ranlib that's in use for this configuration. /// /// This will return a result instead of panicing; - /// see [`get_ranlib()`] for the complete description. + /// see [`Self::get_ranlib`] for the complete description. pub fn try_get_ranlib(&self) -> Result { let mut cmd = self.get_base_ranlib()?; if let Ok(flags) = self.envflags("RANLIBFLAGS") {