@@ -318,7 +318,7 @@ added: v0.1.90
318318 ` '/bin/sh' ` on UNIX, and ` 'cmd.exe' ` on Windows. A different shell can be
319319 specified as a string. The shell should understand the ` -c ` switch on UNIX,
320320 or ` /d /s /c ` on Windows. Defaults to ` false ` (no shell).
321- * return : {ChildProcess}
321+ * Returns : {ChildProcess}
322322
323323The ` child_process.spawn() ` method spawns a new process using the given
324324` command ` , with command line arguments in ` args ` . If omitted, ` args ` defaults
@@ -588,7 +588,7 @@ added: v0.11.12
588588 * [ ` maxBuffer ` ] [ ] {Number} largest amount of data (in bytes) allowed on
589589 stdout or stderr - if exceeded child process is killed
590590 * ` 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
592592
593593The ` child_process.execFileSync() ` method is generally identical to
594594[ ` child_process.execFile() ` ] [ ] with the exception that the method will not return
@@ -631,7 +631,7 @@ added: v0.11.12
631631 stdout or stderr - if exceeded child process is killed
632632 * ` encoding ` {String} The encoding used for all stdio inputs and outputs.
633633 (Default: ` 'buffer' ` )
634- * return : {Buffer|String} The stdout from the command
634+ * Returns : {Buffer|String} The stdout from the command
635635
636636The ` child_process.execSync() ` method is generally identical to
637637[ ` child_process.exec() ` ] [ ] with the exception that the method will not return until
@@ -673,7 +673,7 @@ added: v0.11.12
673673 ` '/bin/sh' ` on UNIX, and ` 'cmd.exe' ` on Windows. A different shell can be
674674 specified as a string. The shell should understand the ` -c ` switch on UNIX,
675675 or ` /d /s /c ` on Windows. Defaults to ` false ` (no shell).
676- * return : {Object}
676+ * Returns : {Object}
677677 * ` pid ` {Number} Pid of the child process
678678 * ` output ` {Array} Array of results from stdio output
679679 * ` stdout ` {Buffer|String} The contents of ` output[1] `
0 commit comments