Skip to content

Commit 1f81da0

Browse files
authored
Fix grammar in 'Symbol type'
New: That said, all symbols have the `description` property. Old: That said, any symbols have `description` property.
1 parent 291b5c0 commit 1f81da0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/04-object-basics/08-symbol/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ alert( Symbol.keyFor(sym2) ); // id
238238

239239
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`.
240240

241-
That said, any symbols have `description` property.
241+
That said, all symbols have the `description` property.
242242

243243
For instance:
244244

0 commit comments

Comments
 (0)