Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/contributing/using-symbols.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/contributing/using-symbols.md b/doc/contributing/using-symbols.md
index 2bc32862b71..dbdd3aff725 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.`,