summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Vanderkam <danvdk@gmail.com>2020-05-15 17:02:11 -0400
committerGitHub <noreply@github.com>2020-05-15 17:02:11 -0400
commitaa1284ceb0f46516d04a6e29862cfc0848a6146c (patch)
tree490444c63f5fd9b7ecd02c8fc419f6ffddff0c39
parenta9ebbca170fa0e0cf33df6ee7580f686acdf5bf2 (diff)
Lets --> Let's (#5473)
-rw-r--r--docs/getting_started/first_steps.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/getting_started/first_steps.md b/docs/getting_started/first_steps.md
index 20635a9b2..da581b8f3 100644
--- a/docs/getting_started/first_steps.md
+++ b/docs/getting_started/first_steps.md
@@ -30,7 +30,7 @@ deno run https://deno.land/std/examples/welcome.ts
### Making an HTTP request
Something a lot of programs do is fetching data from a webserver via an HTTP
-request. Lets write a small program that fetches a file and prints the content
+request. Let's write a small program that fetches a file and prints the content
to the terminal.
Just like in the browser you can use the web standard
@@ -45,7 +45,7 @@ const body = new Uint8Array(await res.arrayBuffer());
await Deno.stdout.write(body);
```
-Lets walk through what this application does:
+Let's walk through what this application does:
1. We get the first argument passed to the application and store it in the
variable `url`.