diff --git a/README.md b/README.md index f4f9e0e..1bfacd5 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ Sending headers to the target URL will overwrite our defaults. Be careful when d ### Adaptive Stealth Mode -Set `mode: "auto"` to let ZenRows pick the request configuration for you — it starts with the cheapest viable setup and escalates to `js_render`/`premium_proxy` only when the target needs it, billing only for the configuration that succeeds. +Set `mode: "auto"` to let Zenrows pick the request configuration for you — it starts with the cheapest viable setup and escalates to `js_render`/`premium_proxy` only when the target needs it, billing only for the configuration that succeeds. ```javascript const response = await client.get(url, { mode: "auto" }); diff --git a/src/index.ts b/src/index.ts index 1f55804..72e82ed 100644 --- a/src/index.ts +++ b/src/index.ts @@ -35,7 +35,7 @@ interface ClientConfig { retries?: number; } export interface ZenRowsConfig { - /** Set to "auto" to enable Adaptive Stealth Mode — ZenRows starts with the cheapest + /** Set to "auto" to enable Adaptive Stealth Mode — Zenrows starts with the cheapest * viable request configuration and escalates to js_render/premium_proxy only when the * target needs it, billing only for the configuration that succeeds. */ mode?: "auto";