projects
/
platform
/
upstream
/
nodejs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f227484
)
Fixed misnamed Promise property
author
Felix Geisendörfer
<felix@debuggable.com>
Tue, 19 Jan 2010 20:09:14 +0000
(21:09 +0100)
committer
Ryan Dahl
<ry@tinyclouds.org>
Tue, 19 Jan 2010 22:29:44 +0000
(14:29 -0800)
src/node.js
patch
|
blob
|
history
diff --git
a/src/node.js
b/src/node.js
index 2bad55e9add033875b257ae6a208c4353830a324..9306cf81cfa3da5df9c6799c9af41cb9c9a9e348 100644
(file)
--- a/
src/node.js
+++ b/
src/node.js
@@
-231,7
+231,7
@@
var eventsModule = createInternalModule('events', function (exports) {
exports.Promise = function () {
exports.EventEmitter.call();
this._blocking = false;
- this.
_
hasFired = false;
+ this.hasFired = false;
};
process.inherits(exports.Promise, exports.EventEmitter);