From ae6f990d6277894b68bb0e842b1a9be56a1e570b Mon Sep 17 00:00:00 2001 From: Vse Mozhe Buty Date: Fri, 27 Nov 2020 16:47:08 +0200 Subject: [PATCH] Add missing parenthesis in 5.6 (Fetch API) --- 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 52856bb9..3ca61f35 100644 --- a/5-network/06-fetch-api/article.md +++ b/5-network/06-fetch-api/article.md @@ -50,7 +50,7 @@ These options govern how `fetch` sets HTTP `Referer` header. Usually that header is set automatically and contains the url of the page that made the request. In most scenarios, it's not important at all, sometimes, for security purposes, it makes sense to remove or shorten it. -**The `referrer` option allows to set any `Referer` within the current origin) or remove it.** +**The `referrer` option allows to set any `Referer` (within the current origin) or remove it.** To send no referer, set an empty string: ```js