From 4a5b5ad274234890f195fbf4289a9afe6e3688f1 Mon Sep 17 00:00:00 2001 From: "Violet.Lee" Date: Tue, 16 Jul 2019 10:52:43 +0900 Subject: [PATCH] minor fix errata --- 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 b082acb4..d426418f 100644 --- a/6-data-storage/01-cookie/article.md +++ b/6-data-storage/01-cookie/article.md @@ -184,7 +184,7 @@ document.cookie = "user=John; secure"; ## samesite -That's another security attribute `somesite`. It's designed to protect from so-called XSRF (cross-site request forgery) attacks. +That's another security attribute `samesite`. It's designed to protect from so-called XSRF (cross-site request forgery) attacks. To understand how it works and when it's useful, let's take a look at XSRF attacks.