doc: add spaces to child.kill example
authorNick Raienko <enaqxx@gmail.com>
Wed, 22 Apr 2015 11:27:04 +0000 (14:27 +0300)
committerBrendan Ashworth <brendan.ashworth@me.com>
Thu, 23 Apr 2015 04:54:43 +0000 (21:54 -0700)
PR-URL: https://github.com/iojs/io.js/pull/1503
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
doc/api/child_process.markdown

index 1ca5cd7..3156705 100644 (file)
@@ -192,7 +192,7 @@ be sent `'SIGTERM'`. See `signal(7)` for a list of available signals.
         grep  = spawn('grep', ['ssh']);
 
     grep.on('close', function (code, signal) {
-      console.log('child process terminated due to receipt of signal '+signal);
+      console.log('child process terminated due to receipt of signal ' + signal);
     });
 
     // send SIGHUP to process