diff options
author | Haobo Zhao <34687745+Haobo-Zhao@users.noreply.github.com> | 2020-05-11 19:31:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-12 01:31:21 +0200 |
commit | c912ffde11fc6eeb5552fce660787aa80ab2a0a9 (patch) | |
tree | 438f75a633e2d1dd620c1aafda5421bcc89038c7 /docs/getting_started | |
parent | d062ffc1baeccca8bf168dc1ce4e94b929478142 (diff) |
doc: fix typo (remove redundant 'from') in first_steps.md (#5199)
Diffstat (limited to 'docs/getting_started')
-rw-r--r-- | docs/getting_started/first_steps.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/getting_started/first_steps.md b/docs/getting_started/first_steps.md index 8c9e4ea0a..34250e173 100644 --- a/docs/getting_started/first_steps.md +++ b/docs/getting_started/first_steps.md @@ -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 |