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:
authorRuben Bridgewater <ruben@bridgewater.de>2019-03-22 05:44:26 +0300
committerRuben Bridgewater <ruben@bridgewater.de>2019-03-27 19:20:06 +0300
commitb08a867d6016ccf04783a0f91fdbcc3460daf234 (patch)
tree5df4b30220cde5ae5eac9ed956c9badac6ba08af /doc/api/events.md
parentfd992e6e36bb4b01a6ceb71cfeb3bae640b492a6 (diff)
benchmark,doc,lib: capitalize more comments
PR-URL: https://github.com/nodejs/node/pull/26849 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Diffstat (limited to 'doc/api/events.md')
-rw-r--r--doc/api/events.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/events.md b/doc/api/events.md
index 8525bf5f248..74846995c2e 100644
--- a/doc/api/events.md
+++ b/doc/api/events.md
@@ -648,7 +648,7 @@ emitter.on('log', () => console.log('log persistently'));
// Will return a new Array with a single function bound by `.on()` above
const newListeners = emitter.rawListeners('log');
-// logs "log persistently" twice
+// Logs "log persistently" twice
newListeners[0]();
emitter.emit('log');
```