Skip to content

Commit

Permalink
fix broken intradoc links (#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
Be-ing authored Jan 29, 2024
1 parent 935113d commit 984406f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Command, Error> {
Ok(self.try_get_archiver_and_flags()?.0)
}
Expand Down Expand Up @@ -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<Command, Error> {
let mut cmd = self.get_base_ranlib()?;
if let Ok(flags) = self.envflags("RANLIBFLAGS") {
Expand Down

0 comments on commit 984406f

Please sign in to comment.