From 4fe42ddb74850fc38a22aa239e216170821687c3 Mon Sep 17 00:00:00 2001 From: Kumar Vaibhav Date: Tue, 26 May 2020 15:20:30 +0530 Subject: [PATCH] fixed typos --- 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 7c76205e..5f18f216 100644 --- a/6-data-storage/01-cookie/article.md +++ b/6-data-storage/01-cookie/article.md @@ -243,7 +243,7 @@ A `samesite=lax` cookie is sent if both of these conditions are true: So, what `samesite=lax` does is basically allows a most common "go to URL" operation to have cookies. E.g. opening a website link from notes satisfies these conditions. -But anything more complicated, like a network request from another site or a form submittion loses cookies. +But anything more complicated, like a network request from another site or a form submission loses cookies. If that's fine for you, then adding `samesite=lax` will probably not break the user experience and add protection.