From 855f67f62b8dd179ad9d230128f27a0ea31d6829 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 20 Mar 2019 15:57:54 +0300 Subject: [PATCH] up --- 7-network/04-fetch-crossorigin/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7-network/04-fetch-crossorigin/article.md b/7-network/04-fetch-crossorigin/article.md index f4846f62..209fc5fe 100644 --- a/7-network/04-fetch-crossorigin/article.md +++ b/7-network/04-fetch-crossorigin/article.md @@ -4,7 +4,7 @@ If we make a `fetch` from an arbitrary web-site, that will probably fail. The core concept here is *origin* -- a domain/port/protocol triplet. -Cross-origin requests -- those sent to another domain or protocol or port -- require special headers from the remote side. That policy is called "CORS": Cross-Origin Resource Sharing. +Cross-origin requests -- those sent to another domain (even a subdomain) or protocol or port -- require special headers from the remote side. That policy is called "CORS": Cross-Origin Resource Sharing. For instance, let's try fetching `http://example.com`: