From 1f81da024dd80905a4476e010f21010825dc20ad Mon Sep 17 00:00:00 2001 From: Luca1152 Date: Tue, 19 Apr 2022 19:01:56 +0300 Subject: [PATCH] Fix grammar in 'Symbol type' New: That said, all symbols have the `description` property. Old: That said, any symbols have `description` property. --- 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 f61e8858..d6b8e9c9 100644 --- a/1-js/04-object-basics/08-symbol/article.md +++ b/1-js/04-object-basics/08-symbol/article.md @@ -238,7 +238,7 @@ alert( Symbol.keyFor(sym2) ); // id The `Symbol.keyFor` internally uses the global symbol registry to look up the key for the symbol. So it doesn't work for non-global symbols. If the symbol is not global, it won't be able to find it and returns `undefined`. -That said, any symbols have `description` property. +That said, all symbols have the `description` property. For instance: