Skip to content

Commit

Permalink
child_process: fix arguments comments
Browse files Browse the repository at this point in the history
Fixes the arguments comments for execFileSync and other related minor
inconsistencies in commented arguments in the same file.

PR-URL: #2161
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
silverwind committed Jul 11, 2015
1 parent d4ceb16 commit 5acad6b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/child_process.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ exports._forkChild = function(fd) {
};


function normalizeExecArgs(command /*, options, callback */) {
function normalizeExecArgs(command /*, options, callback*/) {
var file, args, options, callback;

if (typeof arguments[1] === 'function') {
Expand Down Expand Up @@ -98,7 +98,7 @@ function normalizeExecArgs(command /*, options, callback */) {
}


exports.exec = function(command /*, options, callback */) {
exports.exec = function(command /*, options, callback*/) {
var opts = normalizeExecArgs.apply(null, arguments);
return exports.execFile(opts.file,
opts.args,
Expand All @@ -107,7 +107,7 @@ exports.exec = function(command /*, options, callback */) {
};


exports.execFile = function(file /* args, options, callback */) {
exports.execFile = function(file /*, args, options, callback*/) {
var args, callback;
var options = {
encoding: 'utf8',
Expand Down Expand Up @@ -443,7 +443,7 @@ function checkExecSyncError(ret) {
}


function execFileSync(/*command, options*/) {
function execFileSync(/*command, args, options*/) {
var opts = normalizeSpawnArguments.apply(null, arguments);
var inheritStderr = !opts.options.stdio;

Expand All @@ -462,7 +462,7 @@ function execFileSync(/*command, options*/) {
exports.execFileSync = execFileSync;


function execSync(/*comand, options*/) {
function execSync(/*command, options*/) {
var opts = normalizeExecArgs.apply(null, arguments);
var inheritStderr = opts.options ? !opts.options.stdio : true;

Expand Down

0 comments on commit 5acad6b

Please sign in to comment.