Skip to content

Commit 984406f

Browse files
authored
fix broken intradoc links (#922)
1 parent 935113d commit 984406f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2884,7 +2884,7 @@ impl Build {
28842884
/// Get the archiver that's in use for this configuration.
28852885
///
28862886
/// This will return a result instead of panicing;
2887-
/// see [`get_archiver()`] for the complete description.
2887+
/// see [`Self::get_archiver`] for the complete description.
28882888
pub fn try_get_archiver(&self) -> Result<Command, Error> {
28892889
Ok(self.try_get_archiver_and_flags()?.0)
28902890
}
@@ -2935,7 +2935,7 @@ impl Build {
29352935
/// Get the ranlib that's in use for this configuration.
29362936
///
29372937
/// This will return a result instead of panicing;
2938-
/// see [`get_ranlib()`] for the complete description.
2938+
/// see [`Self::get_ranlib`] for the complete description.
29392939
pub fn try_get_ranlib(&self) -> Result<Command, Error> {
29402940
let mut cmd = self.get_base_ranlib()?;
29412941
if let Ok(flags) = self.envflags("RANLIBFLAGS") {

0 commit comments

Comments
 (0)