We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82bdb98 commit 57a996cCopy full SHA for 57a996c
README.md
@@ -142,7 +142,7 @@ Note that requests which time out will be [retried twice by default](#retries).
142
## Auto-pagination
143
144
List methods in the Mux API are paginated.
145
-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:
146
147
```ts
148
async function fetchAllVideoDeliveryUsages(params) {
@@ -155,7 +155,7 @@ async function fetchAllVideoDeliveryUsages(params) {
155
}
156
```
157
158
-Alternatively, you can make request a single page at a time:
+Alternatively, you can request a single page at a time:
159
160
161
let page = await client.video.deliveryUsage.list();
0 commit comments