From b9775ea2ea79f29ab3b79cafdace5ee7cefe1cb8 Mon Sep 17 00:00:00 2001 From: Jirffey Gabuya Date: Fri, 8 Sep 2023 09:49:26 +0200 Subject: [PATCH] Fix small typo on first_steps.md (#732) --- getting_started/first_steps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting_started/first_steps.md b/getting_started/first_steps.md index 16739619..2ce0c10e 100644 --- a/getting_started/first_steps.md +++ b/getting_started/first_steps.md @@ -148,7 +148,7 @@ import { serve } from "https://deno.land/std@$STD_VERSION/http/server.ts"; const handler = async (_request: Request): Promise => { const resp = await fetch("https://api.github.com/users/denoland", { - // The init object here has an headers object containing a + // The init object here has a headers object containing a // header that indicates what type of response we accept. // We're not specifying the method field since by default // fetch makes a GET request.