From: Alexander Makarenko Date: Wed, 17 Feb 2016 11:40:55 +0000 (+0300) Subject: http,util: fix typos in comments X-Git-Tag: v4.4.1~110 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2ce83bd8f91dec603740cce216259f3f3ac1b364;p=platform%2Fupstream%2Fnodejs.git http,util: fix typos in comments Fix several typos in comments. PR-URL: https://github.com/nodejs/node/pull/5279 Reviewed-By: James M Snell --- diff --git a/lib/_http_server.js b/lib/_http_server.js index 7473008..dc72d76 100644 --- a/lib/_http_server.js +++ b/lib/_http_server.js @@ -485,7 +485,7 @@ function connectionListener(socket) { } // When we're finished writing the response, check if this is the last - // respose, if so destroy the socket. + // response, if so destroy the socket. res.on('finish', resOnFinish); function resOnFinish() { // Usually the first incoming element should be our request. it may diff --git a/lib/util.js b/lib/util.js index c302bd9..8cebbaa 100644 --- a/lib/util.js +++ b/lib/util.js @@ -77,7 +77,7 @@ exports.debuglog = function(set) { /** - * Echos the value of a value. Trys to print the value out + * Echos the value of a value. Tries to print the value out * in the best way possible given the different types. * * @param {Object} obj The object to print out. @@ -254,7 +254,7 @@ function formatValue(ctx, value, recurseTimes) { if (typeof raw === 'string') { // for boxed Strings, we have to remove the 0-n indexed entries, - // since they just noisey up the output and are redundant + // since they just noisy up the output and are redundant keys = keys.filter(function(key) { return !(key >= 0 && key < raw.length); });