From ffeca5745037f0b294380f52fef5d1653f994de5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marius=20Virbi=C4=8Dianskas?= Date: Wed, 19 Apr 2017 07:39:00 +0300 Subject: [PATCH] Fix typo --- 1-js/04-object-basics/03-symbol/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/03-symbol/article.md b/1-js/04-object-basics/03-symbol/article.md index 39901eb3..90e2dfb9 100644 --- a/1-js/04-object-basics/03-symbol/article.md +++ b/1-js/04-object-basics/03-symbol/article.md @@ -144,7 +144,7 @@ let obj = { 0: "test" // same as "0": "test" } -// bot alerts access the same property (the number 0 is converted to string "0") +// both alerts access the same property (the number 0 is converted to string "0") alert( obj["0"] ); // test alert( obj[0] ); // test (same property) ```