Skip to content

Commit fc9477a

Browse files
docs: fix typos (#482)
1 parent 01fa327 commit fc9477a

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
@@ -194,7 +194,7 @@ except orb.APIStatusError as e:
194194
print(e.response)
195195
```
196196

197-
Error codes are as followed:
197+
Error codes are as follows:
198198

199199
| Status Code | Error Type |
200200
| ----------- | -------------------------- |
@@ -305,7 +305,7 @@ customer = response.parse() # get the object that `customers.create()` would ha
305305
print(customer.id)
306306
```
307307

308-
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.
308+
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.
309309

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

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

350349
```py
351350
import httpx

0 commit comments

Comments
 (0)