Skip to content

Commit

Permalink
Lets --> Let's (#5473)
Browse files Browse the repository at this point in the history
  • Loading branch information
danvk authored May 15, 2020
1 parent a9ebbca commit aa1284c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/getting_started/first_steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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`.
Expand Down

0 comments on commit aa1284c

Please sign in to comment.