diff --git a/lib/events.js b/lib/events.js index fc530ff7f3fc15..2a7726e1951d19 100644 --- a/lib/events.js +++ b/lib/events.js @@ -137,8 +137,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]; } };