1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-10 16:11:13 -05:00

doc: fix typo (remove redundant 'from') in first_steps.md (#5199)

This commit is contained in:
Haobo Zhao 2020-05-11 19:31:21 -04:00 committed by GitHub
parent d062ffc1ba
commit c912ffde11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,9 +29,9 @@ deno run https://deno.land/std/examples/welcome.ts
### Making an HTTP request
Something a lot of programs do is fetching data from from a webserver via an
HTTP request. Lets write a small program that fetches a file and prints the
content to the terminal.
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
to the terminal.
Just like in the browser you can use the web standard
[`fetch`](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) API to