Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 10f84e7

Browse files
committedApr 23, 2019
6-data-storage/01-cookie: fix typo
1 parent 6f55ba6 commit 10f84e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎6-data-storage/01-cookie/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The value of `document.cookie` consists of `name=value` pairs, delimited by `; `
3535

3636
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.
3737

38-
We leave it as an excercise for the reader. Also, at the end of the chapter you'll find helper functions to manipulate cookies.
38+
We leave it as an exercise for the reader. Also, at the end of the chapter you'll find helper functions to manipulate cookies.
3939

4040
## Writing to document.cookie
4141

0 commit comments

Comments
 (0)
Please sign in to comment.