@@ -318,7 +318,7 @@ added: v0.1.90
318
318
` '/bin/sh' ` on UNIX, and ` 'cmd.exe' ` on Windows. A different shell can be
319
319
specified as a string. The shell should understand the ` -c ` switch on UNIX,
320
320
or ` /d /s /c ` on Windows. Defaults to ` false ` (no shell).
321
- * return : {ChildProcess}
321
+ * Returns : {ChildProcess}
322
322
323
323
The ` child_process.spawn() ` method spawns a new process using the given
324
324
` command ` , with command line arguments in ` args ` . If omitted, ` args ` defaults
@@ -588,7 +588,7 @@ added: v0.11.12
588
588
* [ ` maxBuffer ` ] [ ] {Number} largest amount of data (in bytes) allowed on
589
589
stdout or stderr - if exceeded child process is killed
590
590
* ` encoding ` {String} The encoding used for all stdio inputs and outputs. (Default: ` 'buffer' ` )
591
- * return : {Buffer|String} The stdout from the command
591
+ * Returns : {Buffer|String} The stdout from the command
592
592
593
593
The ` child_process.execFileSync() ` method is generally identical to
594
594
[ ` child_process.execFile() ` ] [ ] with the exception that the method will not return
@@ -631,7 +631,7 @@ added: v0.11.12
631
631
stdout or stderr - if exceeded child process is killed
632
632
* ` encoding ` {String} The encoding used for all stdio inputs and outputs.
633
633
(Default: ` 'buffer' ` )
634
- * return : {Buffer|String} The stdout from the command
634
+ * Returns : {Buffer|String} The stdout from the command
635
635
636
636
The ` child_process.execSync() ` method is generally identical to
637
637
[ ` child_process.exec() ` ] [ ] with the exception that the method will not return until
@@ -673,7 +673,7 @@ added: v0.11.12
673
673
` '/bin/sh' ` on UNIX, and ` 'cmd.exe' ` on Windows. A different shell can be
674
674
specified as a string. The shell should understand the ` -c ` switch on UNIX,
675
675
or ` /d /s /c ` on Windows. Defaults to ` false ` (no shell).
676
- * return : {Object}
676
+ * Returns : {Object}
677
677
* ` pid ` {Number} Pid of the child process
678
678
* ` output ` {Array} Array of results from stdio output
679
679
* ` stdout ` {Buffer|String} The contents of ` output[1] `
0 commit comments