From c912ffde11fc6eeb5552fce660787aa80ab2a0a9 Mon Sep 17 00:00:00 2001 From: Haobo Zhao <34687745+Haobo-Zhao@users.noreply.github.com> Date: Mon, 11 May 2020 19:31:21 -0400 Subject: [PATCH] doc: fix typo (remove redundant 'from') in first_steps.md (#5199) --- docs/getting_started/first_steps.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting_started/first_steps.md b/docs/getting_started/first_steps.md index 8c9e4ea0ab..34250e1739 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