diff --git a/README.md b/README.md index 68077997..2ac787b1 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ Note that requests which time out will be [retried twice by default](#retries). ## Auto-pagination List methods in the Mux API are paginated. -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: ```ts async function fetchAllVideoDeliveryUsages(params) { @@ -155,7 +155,7 @@ async function fetchAllVideoDeliveryUsages(params) { } ``` -Alternatively, you can make request a single page at a time: +Alternatively, you can request a single page at a time: ```ts let page = await client.video.deliveryUsage.list();