Skip to content

Commit d496656

Browse files
docs(readme): minor typo fixes (#1154)
1 parent 813cb44 commit d496656

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
@@ -444,7 +444,7 @@ Note that requests which time out will be [retried twice by default](#retries).
444444
## Auto-pagination
445445

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

449449
```ts
450450
async function fetchAllFineTuningJobs(params) {
@@ -457,7 +457,7 @@ async function fetchAllFineTuningJobs(params) {
457457
}
458458
```
459459

460-
Alternatively, you can make request a single page at a time:
460+
Alternatively, you can request a single page at a time:
461461

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

0 commit comments

Comments
 (0)