Skip to content

Commit 2c4341f

Browse files
committed
fix for #8
1 parent 272ffa1 commit 2c4341f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

processProxy.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ fifo.prototype.toArray = function () {
3535
* ProcessProxy constructor
3636
*
3737
* @param processToSpawn full path to the process/shell to be launched
38-
* @param arguments array of arguments for the process
38+
* @param args array of arguments for the process
3939
*
4040
* @param retainMaxCmdHistory optional, default 0; set to 0 to
4141
* retain no command history, otherwise 1-N
@@ -117,7 +117,7 @@ fifo.prototype.toArray = function () {
117117
*
118118
*
119119
*/
120-
function ProcessProxy(processToSpawn, arguments,
120+
function ProcessProxy(processToSpawn, args,
121121
retainMaxCmdHistory, invalidateOnRegex,
122122
cwd, envMap, uid, gid, logFunction,
123123
processCmdBlacklistRegex,
@@ -127,7 +127,7 @@ function ProcessProxy(processToSpawn, arguments,
127127
this._createdAt = new Date();
128128
this._processPid = null;
129129
this._processToSpawn = processToSpawn;
130-
this._processArguments = arguments;
130+
this._processArguments = args;
131131
this._logFunction = logFunction;
132132

133133

0 commit comments

Comments
 (0)