From 00cb722e69bac34362ce778eca21bd06b73b27f1 Mon Sep 17 00:00:00 2001 From: nil957 Date: Fri, 27 Mar 2026 21:40:02 +0800 Subject: [PATCH] fix: correct typo "th" to "the" in error message --- src/anthropic/_response.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/anthropic/_response.py b/src/anthropic/_response.py index 1e0257ee..e94bda36 100644 --- a/src/anthropic/_response.py +++ b/src/anthropic/_response.py @@ -611,7 +611,7 @@ class StreamAlreadyConsumed(AnthropicError): been streamed. This can happen if you use a method like `.iter_lines()` and then attempt - to read th entire response body afterwards, e.g. + to read the entire response body afterwards, e.g. ```py response = await client.post(...)