summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaobo Zhao <34687745+Haobo-Zhao@users.noreply.github.com>2020-05-11 19:31:21 -0400
committerGitHub <noreply@github.com>2020-05-12 01:31:21 +0200
commitc912ffde11fc6eeb5552fce660787aa80ab2a0a9 (patch)
tree438f75a633e2d1dd620c1aafda5421bcc89038c7
parentd062ffc1baeccca8bf168dc1ce4e94b929478142 (diff)
doc: fix typo (remove redundant 'from') in first_steps.md (#5199)
-rw-r--r--docs/getting_started/first_steps.md6
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