diff options
author | Matthew Aynalem <maynalem@gmail.com> | 2013-08-12 15:01:05 -0700 |
---|---|---|
committer | isaacs <i@izs.me> | 2013-08-19 16:42:16 -0700 |
commit | c171c490f2d850f63a37496bc7b31855193ce298 (patch) | |
tree | 1b94b3c1013b1a720b648bd18ae4e644b5fd5441 /lib | |
parent | 5555318bf375a3edc17179b09b0bff1bfa9b6253 (diff) | |
download | nodejs-c171c490f2d850f63a37496bc7b31855193ce298.tar.gz nodejs-c171c490f2d850f63a37496bc7b31855193ce298.tar.bz2 nodejs-c171c490f2d850f63a37496bc7b31855193ce298.zip |
fixes #6031 spelling errors
explictly => explicitly
accesss => access
througput => throughput
epxression => expression
communiction => communication
becuase => because
repersent => represent
condonitions => conditions
decompresion => decompression
intentially => intentionally
eventes => events
listning => listening
resicved => received
becuase => because
fundimental => fundamental
colapse => collapse
privlages => privileges
sufficently => sufficiently
hapepns => happens
expliclitly => explicitly
thier => their
shold => should
Diffstat (limited to 'lib')
-rw-r--r-- | lib/_debugger.js | 2 | ||||
-rw-r--r-- | lib/_stream_readable.js | 2 | ||||
-rw-r--r-- | lib/_stream_writable.js | 2 | ||||
-rw-r--r-- | lib/_tls_wrap.js | 2 | ||||
-rw-r--r-- | lib/domain.js | 2 | ||||
-rw-r--r-- | lib/module.js | 2 | ||||
-rw-r--r-- | lib/readline.js | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/lib/_debugger.js b/lib/_debugger.js index ff33af50d..aca52e5f3 100644 --- a/lib/_debugger.js +++ b/lib/_debugger.js @@ -366,7 +366,7 @@ Client.prototype.reqEval = function(expression, cb) { }; -// Finds the first scope in the array in which the epxression evals. +// Finds the first scope in the array in which the expression evals. Client.prototype._reqFramesEval = function(expression, evalFrames, cb) { if (evalFrames.length == 0) { // Just eval in global scope. diff --git a/lib/_stream_readable.js b/lib/_stream_readable.js index ca4cb0a39..0c3fe3e7e 100644 --- a/lib/_stream_readable.js +++ b/lib/_stream_readable.js @@ -51,7 +51,7 @@ function ReadableState(options, stream) { this.reading = false; // a flag to be able to tell if the onwrite cb is called immediately, - // or on a later tick. We set this to true at first, becuase any + // or on a later tick. We set this to true at first, because any // actions that shouldn't happen until "later" should generally also // not happen before the first write call. this.sync = true; diff --git a/lib/_stream_writable.js b/lib/_stream_writable.js index d09145962..ba2e92067 100644 --- a/lib/_stream_writable.js +++ b/lib/_stream_writable.js @@ -84,7 +84,7 @@ function WritableState(options, stream) { this.corked = 0; // a flag to be able to tell if the onwrite cb is called immediately, - // or on a later tick. We set this to true at first, becuase any + // or on a later tick. We set this to true at first, because any // actions that shouldn't happen until "later" should generally also // not happen before the first write call. this.sync = true; diff --git a/lib/_tls_wrap.js b/lib/_tls_wrap.js index e475887e5..a1fdf0a43 100644 --- a/lib/_tls_wrap.js +++ b/lib/_tls_wrap.js @@ -157,7 +157,7 @@ TLSSocket.prototype._init = function() { // lib/net.js expect this value to be non-zero if write hasn't been flushed // immediately // TODO(indutny): rewise this solution, it might be 1 before handshake and - // repersent real writeQueueSize during regular writes. + // represent real writeQueueSize during regular writes. this._handle.writeQueueSize = 1; var self = this; diff --git a/lib/domain.js b/lib/domain.js index 588fb75b2..493c73ce6 100644 --- a/lib/domain.js +++ b/lib/domain.js @@ -24,7 +24,7 @@ var events = require('events'); var EventEmitter = events.EventEmitter; var inherits = util.inherits; -// methods that are called when trying to shut down expliclitly bound EEs +// methods that are called when trying to shut down explicitly bound EEs var endMethods = ['end', 'abort', 'destroy', 'destroySoon']; // communicate with events module, but don't require that diff --git a/lib/module.js b/lib/module.js index 07730ff65..88e0c5a71 100644 --- a/lib/module.js +++ b/lib/module.js @@ -50,7 +50,7 @@ function Module(id, parent) { module.exports = Module; // Set the environ variable NODE_MODULE_CONTEXTS=1 to make node load all -// modules in thier own context. +// modules in their own context. Module._contextLoad = (+process.env['NODE_MODULE_CONTEXTS'] > 0); Module._cache = {}; Module._pathCache = {}; diff --git a/lib/readline.js b/lib/readline.js index 68dde4d5e..8b5ad99ef 100644 --- a/lib/readline.js +++ b/lib/readline.js @@ -727,7 +727,7 @@ Interface.prototype._ttyWrite = function(s, key) { self.pause(); self.emit('SIGCONT'); } - // explictly re-enable "raw mode" and move the cursor to + // explicitly re-enable "raw mode" and move the cursor to // the correct position. // See https://github.com/joyent/node/issues/3295. self._setRawMode(true); |