From f50d93a07b8fdc9fe0e8835b0688b88c7e5889a0 Mon Sep 17 00:00:00 2001 From: Pim Feltkamp Date: Sun, 26 Apr 2026 19:23:32 +0200 Subject: [PATCH] Drop internal iter-N references from user-facing docs Replaces 'iter-N' loop terminology with the substantive technical content the references were trying to attribute. Preserves the underlying facts about TIMEOUT vs NETWORK_ERROR discrimination and body-read timeout wrappers. --- docs/Authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Authentication.md b/docs/Authentication.md index e6c4529..cd6c23b 100644 --- a/docs/Authentication.md +++ b/docs/Authentication.md @@ -78,7 +78,7 @@ let custom = reqwest::Client::builder() ### `.timeout(...)` and `.max_retries(...)` -`.timeout(Duration)` — per-request total timeout. Applied to the connect + headers phase by reqwest, AND to the body read by the SDK (a wrapper landed in iter 12 to close that gap). Defaults to 30 seconds. +`.timeout(Duration)` — per-request total timeout. Applied to the connect + headers phase by reqwest, AND wrapped around the body read by the SDK (`reqwest::Client::timeout` only covers up to response headers; the body read needs a separate `tokio::time::timeout` to honour the same deadline). Defaults to 30 seconds. `.max_retries(u32)` — automatic retries on HTTP 429. Default 3. Set to 0 to disable. See [Rate Limits](Rate-Limits.md) for details.