fix spelling

This commit is contained in:
Igor Zinkovsky 2011-09-23 00:45:41 -07:00 committed by Ryan Dahl
parent 9ad334085f
commit 66293f6e98

View File

@ -601,7 +601,7 @@ function errnoException(errorno, syscall) {
} }
function FSWather() { function FSWatcher() {
var self = this; var self = this;
var FSEvent = process.binding('fs_event_wrap').FSEvent; var FSEvent = process.binding('fs_event_wrap').FSEvent;
this._handle = new FSEvent(); this._handle = new FSEvent();
@ -614,9 +614,9 @@ function FSWather() {
} }
}; };
} }
util.inherits(FSWather, EventEmitter); util.inherits(FSWatcher, EventEmitter);
FSWather.prototype.start = function(filename, persistent) { FSWatcher.prototype.start = function(filename, persistent) {
var r = this._handle.start(filename, persistent); var r = this._handle.start(filename, persistent);
if (r) { if (r) {
@ -625,7 +625,7 @@ FSWather.prototype.start = function(filename, persistent) {
} }
}; };
FSWather.prototype.close = function() { FSWatcher.prototype.close = function() {
this._handle.close(); this._handle.close();
}; };
@ -648,7 +648,7 @@ fs.watch = function(filename) {
if (options.persistent === undefined) options.persistent = true; if (options.persistent === undefined) options.persistent = true;
watcher = new FSWather(); watcher = new FSWatcher();
watcher.start(filename, options.persistent); watcher.start(filename, options.persistent);
watcher.addListener('change', listener); watcher.addListener('change', listener);