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