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.