Skip to content

Commit 52d2bc9

Browse files
committed
doc: fix cargo doc builds when non-default features selected
1 parent ecea653 commit 52d2bc9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@
6363
//! * `async-https-rustls-manual-roots` enables [`reqwest`], the async client with support for
6464
//! proxying and TLS (SSL) using the `rustls` TLS backend without using its the default root
6565
//! certificates.
66+
//!
67+
//! [`minreq`]: https://docs.rs/minreq
68+
//! [`reqwest`]: https://docs.rs/reqwest
6669
6770
#![allow(clippy::result_large_err)]
6871

@@ -168,7 +171,7 @@ impl Builder {
168171
}
169172

170173
/// Set the maximum number of times to retry a request if the response status
171-
/// is one of [`RETRYABLE_ERROR_CODES`].
174+
/// is one of `RETRYABLE_ERROR_CODES`.
172175
pub fn max_retries(mut self, count: usize) -> Self {
173176
self.max_retries = count;
174177
self

0 commit comments

Comments
 (0)