Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 714aed9

Browse files
committedJan 8, 2025·
docs: fix typos (#1996)
1 parent be694a0 commit 714aed9

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

‎README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ except openai.APIStatusError as e:
469469
print(e.response)
470470
```
471471

472-
Error codes are as followed:
472+
Error codes are as follows:
473473

474474
| Status Code | Error Type |
475475
| ----------- | -------------------------- |
@@ -611,7 +611,7 @@ completion = response.parse() # get the object that `chat.completions.create()`
611611
print(completion)
612612
```
613613

614-
These methods return an [`LegacyAPIResponse`](https://github.com/openai/openai-python/tree/main/src/openai/_legacy_response.py) object. This is a legacy class as we're changing it slightly in the next major version.
614+
These methods return a [`LegagcyAPIResponse`](https://github.com/openai/openai-python/tree/main/src/openai/_legacy_response.py) object. This is a legacy class as we're changing it slightly in the next major version.
615615

616616
For the sync client this will mostly be the same with the exception
617617
of `content` & `text` will be methods instead of properties. In the
@@ -655,8 +655,7 @@ If you need to access undocumented endpoints, params, or response properties, th
655655
#### Undocumented endpoints
656656

657657
To make requests to undocumented endpoints, you can make requests using `client.get`, `client.post`, and other
658-
http verbs. Options on the client (such as retries) will be respected when making this
659-
request.
658+
http verbs. Options on the client will be respected (such as retries) when making this request.
660659

661660
```py
662661
import httpx

0 commit comments

Comments
 (0)
Please sign in to comment.