From f065c87bcf65c3ffa50980bba5562ed7159b86db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Ma=C5=82ecki?= Date: Sun, 15 Apr 2012 11:09:37 +0200 Subject: [PATCH] events: remove misleading comment --- lib/events.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/events.js b/lib/events.js index b42f086ee77..05255ac3d32 100644 --- a/lib/events.js +++ b/lib/events.js @@ -94,8 +94,6 @@ EventEmitter.prototype.emit = function() { } }; -// EventEmitter is defined in src/node_events.cc -// EventEmitter.prototype.emit() is also defined there. EventEmitter.prototype.addListener = function(type, listener) { if ('function' !== typeof listener) { throw new Error('addListener only takes instances of Function');