Skip to content

Commit 0717591

Browse files
docs(readme): minor typo fixes (#1154)
1 parent c6ab2c6 commit 0717591

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ Note that requests which time out will be [retried twice by default](#retries).
210210
## Auto-pagination
211211

212212
List methods in the OpenAI API are paginated.
213-
You can use `for await … of` syntax to iterate through items across all pages:
213+
You can use the `for await … of` syntax to iterate through items across all pages:
214214

215215
```ts
216216
async function fetchAllFineTuningJobs(params) {
@@ -223,7 +223,7 @@ async function fetchAllFineTuningJobs(params) {
223223
}
224224
```
225225

226-
Alternatively, you can make request a single page at a time:
226+
Alternatively, you can request a single page at a time:
227227

228228
```ts
229229
let page = await client.fineTuning.jobs.list({ limit: 20 });

0 commit comments

Comments
 (0)