From b01a5edcee61315bf0c3199af38aa892238dfa40 Mon Sep 17 00:00:00 2001 From: Li Ming Date: Fri, 13 Sep 2019 21:14:35 +0800 Subject: [PATCH] Minor grammar fix 'cookie'(as object of this sentence) seems losing. --- 6-data-storage/01-cookie/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6-data-storage/01-cookie/article.md b/6-data-storage/01-cookie/article.md index cd4b47c9..e91a854e 100644 --- a/6-data-storage/01-cookie/article.md +++ b/6-data-storage/01-cookie/article.md @@ -7,7 +7,7 @@ Cookies are usually set by a web-server using response `Set-Cookie` HTTP-header. One of the most widespread use cases is authentication: 1. Upon sign in, the server uses `Set-Cookie` HTTP-header in the response to set a cookie with a unique "session identifier". -2. Next time when the request is set to the same domain, the browser sends the over the net using `Cookie` HTTP-header. +2. Next time when the request is set to the same domain, the browser sends the cookie over the net using `Cookie` HTTP-header. 3. So the server knows who made the request. We can also access cookies from the browser, using `document.cookie` property.