Skip to content

Commit

Permalink
http,util: fix typos in comments
Browse files Browse the repository at this point in the history
Fix several typos in comments.

PR-URL: #5279
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
estliberitas authored and jasnell committed Feb 17, 2016
1 parent 9b6440a commit 836c659
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/_http_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,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
Expand Down
4 changes: 2 additions & 2 deletions lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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);
});
Expand Down

0 comments on commit 836c659

Please sign in to comment.