lib: improve spelling and grammar in comment

PR-URL: https://github.com/nodejs/node/pull/31026
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
This commit is contained in:
David Newman 2019-12-19 09:33:52 -05:00 committed by Rich Trott
parent ee14a64537
commit 312f3086c2

View File

@ -145,8 +145,8 @@ EventEmitter.init = function(opts) {
} }
this[kCapture] = Boolean(opts.captureRejections); this[kCapture] = Boolean(opts.captureRejections);
} else { } else {
// Assigning it directly a prototype lookup, as it slighly expensive // Assigning the kCapture property directly saves an expensive
// and it sits in a very sensitive hot path. // prototype lookup in a very sensitive hot path.
this[kCapture] = EventEmitter.prototype[kCapture]; this[kCapture] = EventEmitter.prototype[kCapture];
} }
}; };