Skip to content

Commit 32e5be2

Browse files
authored
Merge pull request #64 from beelarr/patch-2
Update to article.md
2 parents b72c2eb + 015396d commit 32e5be2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ Other symbols will also become familiar when we study the corresponding language
256256

257257
Symbols are created with `Symbol(name)` call.
258258

259-
Symbols are always different values, even if they have the same name. If we want same-named symbols to be equal, then we should use the global registry: `Symbol.for(name)` returns (creates if needed) a global symbol with the given name. Multiple calls of `Symfol.for` return exactly the same symbol.
259+
Symbols are always different values, even if they have the same name. If we want same-named symbols to be equal, then we should use the global registry: `Symbol.for(name)` returns (creates if needed) a global symbol with the given name. Multiple calls of `Symbol.for` return exactly the same symbol.
260260

261261
Symbols have two main use cases:
262262

0 commit comments

Comments
 (0)