Skip to content

Commit b8a2ce6

Browse files
docs: fix typos (#482)
1 parent c14225c commit b8a2ce6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ except orb.APIStatusError as e:
217217
print(e.response)
218218
```
219219

220-
Error codes are as followed:
220+
Error codes are as follows:
221221

222222
| Status Code | Error Type |
223223
| ----------- | -------------------------- |
@@ -328,7 +328,7 @@ customer = response.parse() # get the object that `customers.create()` would ha
328328
print(customer.id)
329329
```
330330

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

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

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

373372
```py
374373
import httpx

0 commit comments

Comments
 (0)