summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexander Niebuhr <alexander@nbhr.io> 2023-10-11 07:06:20 +0200
committerGravatar GitHub <noreply@github.com> 2023-10-11 07:06:20 +0200
commit3f231cefed58c46315dda2e99f9d82a2678337d2 (patch)
tree15bd0bfcecfe782245eb5469b125bccf7acefc63
parenta8b979ef409b6d3d3f3d8c8d11b37dd44e1ebd6b (diff)
downloadastro-3f231cefed58c46315dda2e99f9d82a2678337d2.tar.gz
astro-3f231cefed58c46315dda2e99f9d82a2678337d2.tar.zst
astro-3f231cefed58c46315dda2e99f9d82a2678337d2.zip
port https://github.com/withastro/docs/pull/4980 (#8799)
-rw-r--r--packages/integrations/cloudflare/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/cloudflare/README.md b/packages/integrations/cloudflare/README.md
index 9bae28c5a..7ca92152b 100644
--- a/packages/integrations/cloudflare/README.md
+++ b/packages/integrations/cloudflare/README.md
@@ -169,7 +169,7 @@ default: `false`
Whether or not to import `.wasm` files [directly as ES modules](https://github.com/WebAssembly/esm-integration/tree/main/proposals/esm-integration) using the `.wasm?module` import syntax.
-Add `wasmModuleImports: true` to `astro.config.mjs` to enable this functionality in both the Cloudflare build and the Astro dev server. Read more about [using Wasm modules](#use-wasm-modules)
+Add `wasmModuleImports: true` to `astro.config.mjs` to enable this functionality in both the Cloudflare build and the Astro dev server. Read more about [using Wasm modules](#use-wasm-modules).
```diff lang="js"
// astro.config.mjs
@@ -221,7 +221,7 @@ Currently supported bindings:
- [Cloudflare Workers KV](https://developers.cloudflare.com/kv/)
- [Cloudflare Durable Objects](https://developers.cloudflare.com/durable-objects/)
-You can access the runtime from Astro components through `Astro.locals` inside any .astro` file.
+You can access the runtime from Astro components through `Astro.locals` inside any `.astro` file.
```astro
---