diff --git a/src/anthropic/_types.py b/src/anthropic/_types.py index fbd6e3af..7e95adbe 100644 --- a/src/anthropic/_types.py +++ b/src/anthropic/_types.py @@ -279,8 +279,8 @@ class NotGiven: ```py def get(timeout: Union[int, NotGiven, None] = NotGiven()) -> Response: ... - get(timout=1) # 1s timeout - get(timout=None) # No timeout + get(timeout=1) # 1s timeout + get(timeout=None) # No timeout get() # Default timeout behavior, which may not be statically known at the method definition. ``` """