Skip to content

Commit

Permalink
chore(internal): fix typos (#993)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot committed Dec 19, 2023
1 parent 052e611 commit 00ef2f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/openai/_base_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@


class PageInfo:
"""Stores the necesary information to build the request to retrieve the next page.
"""Stores the necessary information to build the request to retrieve the next page.
Either `url` or `params` must be set.
"""
Expand Down
4 changes: 2 additions & 2 deletions src/openai/_streaming.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __stream__(self) -> Iterator[_T]:
data = sse.json()
if is_mapping(data) and data.get("error"):
raise APIError(
message="An error ocurred during streaming",
message="An error occurred during streaming",
request=self.response.request,
body=data["error"],
)
Expand Down Expand Up @@ -134,7 +134,7 @@ async def __stream__(self) -> AsyncIterator[_T]:
data = sse.json()
if is_mapping(data) and data.get("error"):
raise APIError(
message="An error ocurred during streaming",
message="An error occurred during streaming",
request=self.response.request,
body=data["error"],
)
Expand Down

0 comments on commit 00ef2f4

Please sign in to comment.