ci: fix rustdoc::redundant_explicit_links (#110)

This commit is contained in:
Ethan Brierley 2023-10-24 10:50:53 +01:00 committed by GitHub
parent de1b651bcc
commit 304d6f1ebc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ use task_local_extensions::Extensions;
/// `RetryTransientMiddleware` offers retry logic for requests that fail in a transient manner
/// and can be safely executed again.
///
/// Currently, it allows setting a [RetryPolicy][retry_policies::RetryPolicy] algorithm for calculating the __wait_time__
/// Currently, it allows setting a [RetryPolicy] algorithm for calculating the __wait_time__
/// between each request retry.
///
///```rust