Skip to content

Commit 68f4f6a

Browse files
committed
chore(internal): fix typo in NotGiven docstring (#50)
1 parent 14be6a7 commit 68f4f6a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/orb/_types.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,8 @@ class NotGiven:
279279
```py
280280
def get(timeout: Union[int, NotGiven, None] = NotGiven()) -> Response: ...
281281
282-
get(timout=1) # 1s timeout
283-
get(timout=None) # No timeout
282+
get(timeout=1) # 1s timeout
283+
get(timeout=None) # No timeout
284284
get() # Default timeout behavior, which may not be statically known at the method definition.
285285
```
286286
"""

0 commit comments

Comments
 (0)