Skip to content

Commit

Permalink
Fix spelling of WebAssembly (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
tniessen authored Dec 10, 2023
1 parent 1a9f714 commit 5e14308
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion runtime/manual/advanced/jsx_dom/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions runtime/manual/advanced/typescript/overview.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion sidebars/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ const sidebars = {
},
{
type: "category",
label: "Web Assembly",
label: "WebAssembly",
items: [
"manual/runtime/webassembly/index",
"manual/runtime/webassembly/using_wasm",
Expand Down

0 comments on commit 5e14308

Please sign in to comment.