@@ -308,7 +308,7 @@ added: v0.1.90
308
308
'/bin/sh' on UNIX, and 'cmd.exe' on Windows. A different shell can be
309
309
specified as a string. The shell should understand the ` -c ` switch on UNIX,
310
310
or ` /s /c ` on Windows. Defaults to ` false ` (no shell).
311
- * return : {ChildProcess}
311
+ * Returns : {ChildProcess}
312
312
313
313
The ` child_process.spawn() ` method spawns a new process using the given
314
314
` command ` , with command line arguments in ` args ` . If omitted, ` args ` defaults
@@ -567,7 +567,7 @@ added: v0.11.12
567
567
* ` maxBuffer ` {Number} largest amount of data (in bytes) allowed on stdout or
568
568
stderr - if exceeded child process is killed
569
569
* ` encoding ` {String} The encoding used for all stdio inputs and outputs. (Default: 'buffer')
570
- * return : {Buffer|String} The stdout from the command
570
+ * Returns : {Buffer|String} The stdout from the command
571
571
572
572
The ` child_process.execFileSync() ` method is generally identical to
573
573
` child_process.execFile() ` with the exception that the method will not return
@@ -606,7 +606,7 @@ added: v0.11.12
606
606
* ` maxBuffer ` {Number} largest amount of data (in bytes) allowed on stdout or
607
607
stderr - if exceeded child process is killed
608
608
* ` encoding ` {String} The encoding used for all stdio inputs and outputs. (Default: 'buffer')
609
- * return : {Buffer|String} The stdout from the command
609
+ * Returns : {Buffer|String} The stdout from the command
610
610
611
611
The ` child_process.execSync() ` method is generally identical to
612
612
` child_process.exec() ` with the exception that the method will not return until
@@ -644,7 +644,7 @@ added: v0.11.12
644
644
'/bin/sh' on UNIX, and 'cmd.exe' on Windows. A different shell can be
645
645
specified as a string. The shell should understand the ` -c ` switch on UNIX,
646
646
or ` /s /c ` on Windows. Defaults to ` false ` (no shell).
647
- * return : {Object}
647
+ * Returns : {Object}
648
648
* ` pid ` {Number} Pid of the child process
649
649
* ` output ` {Array} Array of results from stdio output
650
650
* ` stdout ` {Buffer|String} The contents of ` output[1] `
0 commit comments