summaryrefslogtreecommitdiff
path: root/docs/getting_started
diff options
context:
space:
mode:
authorHossam Magdy <hossam.magdy@outlook.com>2020-05-08 23:21:44 +0200
committerGitHub <noreply@github.com>2020-05-08 17:21:44 -0400
commitfca204d8335b407236e16e639099a7696f9563ee (patch)
tree08b95352ffe51161e20a35ed09fe4941fa4be837 /docs/getting_started
parentfebb6aa68f1f1f3c5cf7640658de0807d472bea9 (diff)
fix typos (#5163)
Diffstat (limited to 'docs/getting_started')
-rw-r--r--docs/getting_started/first_steps.md4
-rw-r--r--docs/getting_started/typescript.md2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/getting_started/first_steps.md b/docs/getting_started/first_steps.md
index fb5b74a0b..74dbae1b4 100644
--- a/docs/getting_started/first_steps.md
+++ b/docs/getting_started/first_steps.md
@@ -5,14 +5,14 @@ fundamentals of Deno.
This document assumes that you have some prior knowledge of JavaScript,
especially about `async`/`await`. If you have no prior knowledge of JavaScript,
-you might want to folow a guide
+you might want to follow a guide
[on the basics of JavaScript](https://developer.mozilla.org/en-US/docs/Learn/JavaScript)
before attempting to start with Deno.
### Hello World
Deno is a runtime for JavaScript and TypeScript and tries to be web compatible
-and use modern features whereever possible.
+and use modern features wherever possible.
Because of this browser compatibility a simple `Hello World` program is actually
no different to one you can run in the browser:
diff --git a/docs/getting_started/typescript.md b/docs/getting_started/typescript.md
index 5f406e6bd..ebe1e5e70 100644
--- a/docs/getting_started/typescript.md
+++ b/docs/getting_started/typescript.md
@@ -45,7 +45,7 @@ the program.
#### Triple-slash reference directive in JavaScript files
If you are hosting modules which you want to be consumed by Deno, and you want
-to inform Deno about the location of the type definitions, you can utilise a
+to inform Deno about the location of the type definitions, you can utilize a
triple-slash directive in the actual code. For example, if you have a JavaScript
module and you would like to provide Deno with the location of the type
definitions which happen to be alongside that file, your JavaScript module named