From 24847b833d1c982508e4540b917c36b5cdaeb1dd Mon Sep 17 00:00:00 2001 From: Brendan Irvine-Broque Date: Mon, 9 Jun 2025 12:20:18 -0700 Subject: [PATCH] Simplify language on WASM docs People landing here should go straight to Workers --- src/content/docs/workers/runtime-apis/webassembly/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/workers/runtime-apis/webassembly/index.mdx b/src/content/docs/workers/runtime-apis/webassembly/index.mdx index 18b7a8ab31351ba..b16cf9d1c4df6c8 100644 --- a/src/content/docs/workers/runtime-apis/webassembly/index.mdx +++ b/src/content/docs/workers/runtime-apis/webassembly/index.mdx @@ -11,7 +11,7 @@ import { DirectoryListing } from "~/components" [WebAssembly](https://webassembly.org/) (abbreviated Wasm) allows you to compile languages like [Rust](/workers/languages/rust/), Go, or C to a binary format that can run in a wide variety of environments, including [web browsers](https://developer.mozilla.org/en-US/docs/WebAssembly#browser_compatibility), Cloudflare Workers, and other WebAssembly runtimes. -On Workers and in [Cloudflare Pages Functions](https://blog.cloudflare.com/pages-functions-with-webassembly/), you can use WebAssembly to: +You can use WebAssembly to: * Execute code written in a language other than JavaScript, via `WebAssembly.instantiate()`. * Write an entire Cloudflare Worker in Rust, using bindings that make Workers' JavaScript APIs available directly from your Rust code.