Browse Source

docs: remove unused require from example

Closes GH-3801
v0.8.7-release
Bert Belder 13 years ago
parent
commit
9e2319f977
  1. 3
      doc/api/child_process.markdown

3
doc/api/child_process.markdown

@ -449,8 +449,7 @@ See also: `child_process.exec()` and `child_process.fork()`
Runs a command in a shell and buffers the output. Runs a command in a shell and buffers the output.
var util = require('util'), var exec = require('child_process').exec,
exec = require('child_process').exec,
child; child;
child = exec('cat *.js bad_file | wc -l', child = exec('cat *.js bad_file | wc -l',

Loading…
Cancel
Save