From 5ac51835a7f91f993f1dd50e78bcd6823f5c68ed Mon Sep 17 00:00:00 2001 From: Mustafa Kemal Tuna <12192118+lumosmind@users.noreply.github.com> Date: Sat, 4 Jul 2020 18:34:34 +0300 Subject: [PATCH 1/2] more definitive title There are also array literals and string literals. --- 1-js/04-object-basics/08-symbol/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/08-symbol/article.md b/1-js/04-object-basics/08-symbol/article.md index 1ed73ed4b1..8825395f54 100644 --- a/1-js/04-object-basics/08-symbol/article.md +++ b/1-js/04-object-basics/08-symbol/article.md @@ -121,7 +121,7 @@ user.id = "Their id value" // Boom! overwritten by another script! ``` -### Symbols in a literal +### Symbols in a object literal If we want to use a symbol in an object literal `{...}`, we need square brackets around it. From 41766c939e2d6dadd03807243892678a1690071d Mon Sep 17 00:00:00 2001 From: Mustafa Kemal Tuna <12192118+lumosmind@users.noreply.github.com> Date: Thu, 23 Jul 2020 22:31:55 +0300 Subject: [PATCH 2/2] grammar fix --- 1-js/04-object-basics/08-symbol/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/08-symbol/article.md b/1-js/04-object-basics/08-symbol/article.md index 8825395f54..1ee6679165 100644 --- a/1-js/04-object-basics/08-symbol/article.md +++ b/1-js/04-object-basics/08-symbol/article.md @@ -121,7 +121,7 @@ user.id = "Their id value" // Boom! overwritten by another script! ``` -### Symbols in a object literal +### Symbols in an object literal If we want to use a symbol in an object literal `{...}`, we need square brackets around it.