Skip to content

Commit 4187519

Browse files
authoredOct 30, 2016
Typo in comment.
1 parent 2d22b33 commit 4187519

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎lib/parse.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ function parseNonShell(parsed) {
5353
function parseShell(parsed) {
5454
var shellCommand;
5555

56-
// If node supports the shell options, there's no need to mimic its behavior
56+
// If node supports the shell option, there's no need to mimic its behavior
5757
if (supportsShellOption) {
5858
return parsed;
5959
}
6060

61-
// Mimic nodejs shell option, see: https://github.com/nodejs/node/blob/b9f6a2dc059a1062776133f3d4fd848c4da7d150/lib/child_process.js#L335
61+
// Mimic node shell option, see: https://github.com/nodejs/node/blob/b9f6a2dc059a1062776133f3d4fd848c4da7d150/lib/child_process.js#L335
6262
shellCommand = [parsed.command].concat(parsed.args).join(' ');
6363

6464
if (isWin) {

0 commit comments

Comments
 (0)
Please sign in to comment.