From 007d089541fe0462cb2853f90dacf403152f3ee8 Mon Sep 17 00:00:00 2001 From: Kunall Banerjee Date: Sat, 28 Jun 2025 03:09:47 -0400 Subject: [PATCH] =?UTF-8?q?fix(docs):=20use=20consistent=20spelling=20for?= =?UTF-8?q?=20=E2=80=98adapter=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connect-devices/warp/troubleshooting/known-limitations.mdx | 2 +- src/content/docs/workers/framework-guides/web-apps/astro.mdx | 2 +- src/content/docs/workers/framework-guides/web-apps/nextjs.mdx | 2 +- .../static-assets/migration-guides/migrate-from-pages.mdx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/content/docs/cloudflare-one/connections/connect-devices/warp/troubleshooting/known-limitations.mdx b/src/content/docs/cloudflare-one/connections/connect-devices/warp/troubleshooting/known-limitations.mdx index bb1cc3eb5831dc..87d288503f85f0 100644 --- a/src/content/docs/cloudflare-one/connections/connect-devices/warp/troubleshooting/known-limitations.mdx +++ b/src/content/docs/cloudflare-one/connections/connect-devices/warp/troubleshooting/known-limitations.mdx @@ -44,7 +44,7 @@ Resolve-DnsName -Name google.com ## 4G/5G embedded modules -Because of how the WARP client instantiates the local DNS Proxy, it is incompatible with 4G/5G cellular adaptors which have IPv6 enabled. To run WARP on these devices, you will need to disable IPv6 on the system. +Because of how the WARP client instantiates the local DNS Proxy, it is incompatible with 4G/5G cellular adapters which have IPv6 enabled. To run WARP on these devices, you will need to disable IPv6 on the system. :::note diff --git a/src/content/docs/workers/framework-guides/web-apps/astro.mdx b/src/content/docs/workers/framework-guides/web-apps/astro.mdx index 5243500a99857a..01c8cbb56e78e9 100644 --- a/src/content/docs/workers/framework-guides/web-apps/astro.mdx +++ b/src/content/docs/workers/framework-guides/web-apps/astro.mdx @@ -160,7 +160,7 @@ If your Astro project uses [on demand rendering (also known as SSR)](https://doc
The key parts of this config are: - - `main` points to the entry point of your Worker script. This is generated by the Astro adaptor, and is what powers your server-rendered pages. + - `main` points to the entry point of your Worker script. This is generated by the Astro adapter, and is what powers your server-rendered pages. - `assets.directory` tells Wrangler where to find your static assets. In this case, we're telling Wrangler to look in the `./dist` directory. If your assets are in a different directory, update the `directory` value accordingly. Read more about [Wrangler configuration options](/workers/wrangler/configuration/) and [asset configuration options](/workers/wrangler/configuration/#assets). diff --git a/src/content/docs/workers/framework-guides/web-apps/nextjs.mdx b/src/content/docs/workers/framework-guides/web-apps/nextjs.mdx index d779ede1758dc8..908a6a9b26e2c3 100644 --- a/src/content/docs/workers/framework-guides/web-apps/nextjs.mdx +++ b/src/content/docs/workers/framework-guides/web-apps/nextjs.mdx @@ -32,7 +32,7 @@ This is a simple getting started guide. For detailed documentation on how the to Next.js supports Server-side and Client-side rendering, as well as Partial Prerendering which lets you combine static and dynamic components in the same route. -You can deploy your Next.js app to Cloudflare Workers using the OpenNext adaptor. +You can deploy your Next.js app to Cloudflare Workers using the OpenNext adapter. ## Next.js supported features diff --git a/src/content/docs/workers/static-assets/migration-guides/migrate-from-pages.mdx b/src/content/docs/workers/static-assets/migration-guides/migrate-from-pages.mdx index f6f1e7aeccbd07..fae37ff0002c08 100644 --- a/src/content/docs/workers/static-assets/migration-guides/migrate-from-pages.mdx +++ b/src/content/docs/workers/static-assets/migration-guides/migrate-from-pages.mdx @@ -32,7 +32,7 @@ Migrating from Cloudflare Pages to Cloudflare Workers is often a straightforward ### Frameworks -If your Pages project uses [a popular framework](/workers/framework-guides/), most frameworks already have adaptors available for Cloudflare Workers. Switch out any Pages-specific adaptors for the Workers equivalent and follow any guidance that they provide. +If your Pages project uses [a popular framework](/workers/framework-guides/), most frameworks already have adapters available for Cloudflare Workers. Switch out any Pages-specific adapters for the Workers equivalent and follow any guidance that they provide. ### Project configuration