From 7267abd41b1125d16f1c72204df2a161267c545b Mon Sep 17 00:00:00 2001 From: Andry <47834618+nikandev@users.noreply.github.com> Date: Sun, 28 Aug 2022 12:52:32 +0300 Subject: [PATCH] Update article.md Adds missing comma on line 24 --- 5-network/06-fetch-api/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-network/06-fetch-api/article.md b/5-network/06-fetch-api/article.md index c3f75175..16e2705f 100644 --- a/5-network/06-fetch-api/article.md +++ b/5-network/06-fetch-api/article.md @@ -21,7 +21,7 @@ let promise = fetch(url, { // depending on the request body "Content-Type": "text/plain;charset=UTF-8" }, - body: undefined // string, FormData, Blob, BufferSource, or URLSearchParams + body: undefined, // string, FormData, Blob, BufferSource, or URLSearchParams referrer: "about:client", // or "" to send no Referer header, // or an url from the current origin referrerPolicy: "no-referrer-when-downgrade", // no-referrer, origin, same-origin...