We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bb6de6 commit 8a158eaCopy full SHA for 8a158ea
README.md
@@ -303,7 +303,7 @@ Note that requests which time out will be [retried twice by default](#retries).
303
## Auto-pagination
304
305
List methods in the Mux API are paginated.
306
-You can use `for await … of` syntax to iterate through items across all pages:
+You can use the `for await … of` syntax to iterate through items across all pages:
307
308
```ts
309
async function fetchAllVideoDeliveryUsages(params) {
@@ -316,7 +316,7 @@ async function fetchAllVideoDeliveryUsages(params) {
316
}
317
```
318
319
-Alternatively, you can make request a single page at a time:
+Alternatively, you can request a single page at a time:
320
321
322
let page = await client.video.deliveryUsage.list();
0 commit comments