diff --git a/src/lib.rs b/src/lib.rs index a555a6469..a5250a85e 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") {