From deca7565c51fd678354d26eaae7fe2481e36e2c3 Mon Sep 17 00:00:00 2001 From: indexzero Date: Sat, 9 Mar 2013 00:24:04 -0500 Subject: [PATCH] [doc fix] Add undefined var in example. --- examples/balancer/simple-balancer-with-websockets.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/balancer/simple-balancer-with-websockets.js b/examples/balancer/simple-balancer-with-websockets.js index 9c039f1c4..f27c9efdd 100644 --- a/examples/balancer/simple-balancer-with-websockets.js +++ b/examples/balancer/simple-balancer-with-websockets.js @@ -1,4 +1,6 @@ -var httpProxy = require('../../lib/node-http-proxy'); +var http = require('http'), + httpProxy = require('../../lib/node-http-proxy'); + // // A simple round-robin load balancing strategy. //