Skip to content

Commit f72ddc1

Browse files
committed
fix broken intradoc links
1 parent 4d36cfa commit f72ddc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

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

0 commit comments

Comments
 (0)