From 9e2319f9772c9d07a3bd51cc67bd465bdb9f210d Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Tue, 31 Jul 2012 21:38:58 +0200 Subject: [PATCH] docs: remove unused require from example Closes GH-3801 --- doc/api/child_process.markdown | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/api/child_process.markdown b/doc/api/child_process.markdown index 5e10948..3bd79f2 100644 --- a/doc/api/child_process.markdown +++ b/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. - var util = require('util'), - exec = require('child_process').exec, + var exec = require('child_process').exec, child; child = exec('cat *.js bad_file | wc -l', -- 2.7.4