From 2a6d840e6e80a03c8a2b0ba758222f8b4650b520 Mon Sep 17 00:00:00 2001 From: ogaclejapan Date: Fri, 1 Nov 2019 09:52:05 +0900 Subject: [PATCH] Fix syntax error --- 5-network/05-fetch-crossorigin/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-network/05-fetch-crossorigin/article.md b/5-network/05-fetch-crossorigin/article.md index efef4431..1394433d 100644 --- a/5-network/05-fetch-crossorigin/article.md +++ b/5-network/05-fetch-crossorigin/article.md @@ -226,7 +226,7 @@ Let's see how it works step-by-step on example, for a cross-origin `PATCH` reque let response = await fetch('https://site.com/service.json', { method: 'PATCH', headers: { - 'Content-Type': 'application/json' + 'Content-Type': 'application/json', 'API-Key': 'secret' } });