We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cargo doc
1 parent ecea653 commit 52d2bc9Copy full SHA for 52d2bc9
src/lib.rs
@@ -63,6 +63,9 @@
63
//! * `async-https-rustls-manual-roots` enables [`reqwest`], the async client with support for
64
//! proxying and TLS (SSL) using the `rustls` TLS backend without using its the default root
65
//! certificates.
66
+//!
67
+//! [`minreq`]: https://docs.rs/minreq
68
+//! [`reqwest`]: https://docs.rs/reqwest
69
70
#![allow(clippy::result_large_err)]
71
@@ -168,7 +171,7 @@ impl Builder {
168
171
}
169
172
170
173
/// Set the maximum number of times to retry a request if the response status
- /// is one of [`RETRYABLE_ERROR_CODES`].
174
+ /// is one of `RETRYABLE_ERROR_CODES`.
175
pub fn max_retries(mut self, count: usize) -> Self {
176
self.max_retries = count;
177
self
0 commit comments