From 84a51b0bb6682947d9d18bc09620cfcbb1c32e2a Mon Sep 17 00:00:00 2001 From: cola119 Date: Sat, 4 Jun 2022 09:43:00 +0900 Subject: [PATCH] doc: make clear the result of comparison between Symbol.for --- doc/contributing/using-symbols.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/contributing/using-symbols.md b/doc/contributing/using-symbols.md index 2bc32862b7169e..dbdd3aff725a46 100644 --- a/doc/contributing/using-symbols.md +++ b/doc/contributing/using-symbols.md @@ -61,7 +61,7 @@ for different reasons. ```js const s = Symbol.for('hello'); -console.log(s === Symbol.for('hello')); +console.log(s === Symbol.for('hello')); // true ``` In the Node.js runtime we prefix all our global symbols with `nodejs.`,