1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

Lets --> Let's (#5473)

This commit is contained in:
Dan Vanderkam 2020-05-15 17:02:11 -04:00 committed by GitHub
parent a9ebbca170
commit aa1284ceb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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`.