From f72ddc1812395092ac505ce3238874e280946dd5 Mon Sep 17 00:00:00 2001 From: Be Wilson Date: Sun, 28 Jan 2024 18:10:10 -0600 Subject: [PATCH] fix broken intradoc links --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index a555a6469..0ed92d4d2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2883,7 +2883,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) } @@ -2934,7 +2934,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") {