From 416d5e2215eabf605fccbc7751fddf9fd924881f Mon Sep 17 00:00:00 2001 From: Gleb Nazarov Date: Thu, 5 Dec 2024 14:19:07 +0500 Subject: [PATCH] KTOR-7174 update ktor-client HttpRequestRetryConfig class name and corresponding api documentation link (#552) --- topics/client-request-retry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topics/client-request-retry.md b/topics/client-request-retry.md index 18cdb9fa8..4e6589b9c 100644 --- a/topics/client-request-retry.md +++ b/topics/client-request-retry.md @@ -50,7 +50,7 @@ A [runnable example](https://github.com/ktorio/ktor-documentation/tree/%ktor_ver * `exponentialDelay` specifies an exponential delay between retries, which is calculated using the Exponential backoff algorithm. You can learn more about supported configuration options -from [HttpRequestRetry.Configuration](https://api.ktor.io/ktor-client/ktor-client-core/io.ktor.client.plugins/-http-request-retry/-configuration). +from [HttpRequestRetryConfig](https://api.ktor.io/ktor-client/ktor-client-core/io.ktor.client.plugins/-http-request-retry-config). ### Configure retry conditions {id="conditions"}