From 10f84e7268127b5cd5fede72df2cf2dcc43980b6 Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Tue, 23 Apr 2019 20:31:30 +0300 Subject: [PATCH] 6-data-storage/01-cookie: fix typo --- 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 32abcc73..e6322fd6 100644 --- a/6-data-storage/01-cookie/article.md +++ b/6-data-storage/01-cookie/article.md @@ -35,7 +35,7 @@ The value of `document.cookie` consists of `name=value` pairs, delimited by `; ` To find a particular cookie, we can split `document.cookie` by `; `, and then find the right name. We can use either a regular expression or array functions to do that. -We leave it as an excercise for the reader. Also, at the end of the chapter you'll find helper functions to manipulate cookies. +We leave it as an exercise for the reader. Also, at the end of the chapter you'll find helper functions to manipulate cookies. ## Writing to document.cookie