From 5e1430819be775bb93517daef582cded5cf4e936 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sun, 10 Dec 2023 20:26:24 +0100 Subject: [PATCH] Fix spelling of WebAssembly (#218) --- runtime/manual/advanced/jsx_dom/overview.md | 2 +- runtime/manual/advanced/typescript/overview.md | 8 ++++---- sidebars/runtime.js | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/runtime/manual/advanced/jsx_dom/overview.md b/runtime/manual/advanced/jsx_dom/overview.md index 83b8a554c..94dec9cec 100644 --- a/runtime/manual/advanced/jsx_dom/overview.md +++ b/runtime/manual/advanced/jsx_dom/overview.md @@ -18,7 +18,7 @@ A web application is generally made up of three key technologies: - HTML - CSS -As well as increasingly, [Web Assembly](../../runtime/webassembly/index.md) +As well as increasingly, [WebAssembly](../../runtime/webassembly/index.md) might play a part in a web application. These technologies combine to allow a developer to build an application in a diff --git a/runtime/manual/advanced/typescript/overview.md b/runtime/manual/advanced/typescript/overview.md index 8766479b2..76735ad37 100644 --- a/runtime/manual/advanced/typescript/overview.md +++ b/runtime/manual/advanced/typescript/overview.md @@ -1,7 +1,7 @@ # Overview of TypeScript in Deno One of the benefits of Deno is that it treats TypeScript as a first class -language, just like JavaScript or Web Assembly, when running code in Deno. What +language, just like JavaScript or WebAssembly, when running code in Deno. What that means is you can run or import TypeScript without installing anything more than the Deno CLI. @@ -10,12 +10,12 @@ yourself. Well, depends on what you mean by run. One could argue that in a browser you don't actually _run_ JavaScript either. The JavaScript engine in the browser translates the JavaScript to a series of operation codes, which it then executes in a sandbox. So it translates JavaScript to something close to -assembly. Even Web Assembly goes through a similar translation, in that Web -Assembly is architecture agnostic while it needs to be translated into the +assembly. Even WebAssembly goes through a similar translation, in that +WebAssembly is architecture agnostic while it needs to be translated into the machine specific operation codes needed for the particular platform architecture it is running on. So when we say TypeScript is a first class language in Deno, we mean that we try to make the user experience in authoring and running -TypeScript as easy and straightforward as JavaScript and Web Assembly. +TypeScript as easy and straightforward as JavaScript and WebAssembly. Behind the scenes, we use a combination of technologies, in Rust and JavaScript, to provide that experience. diff --git a/sidebars/runtime.js b/sidebars/runtime.js index 0595a7bdf..c3897f39c 100644 --- a/sidebars/runtime.js +++ b/sidebars/runtime.js @@ -239,7 +239,7 @@ const sidebars = { }, { type: "category", - label: "Web Assembly", + label: "WebAssembly", items: [ "manual/runtime/webassembly/index", "manual/runtime/webassembly/using_wasm",