From aeb42a3614d51bbd406e76e98ebd953cd6fe8fc4 Mon Sep 17 00:00:00 2001 From: Kailan Blanks Date: Wed, 3 Dec 2014 11:49:19 +0000 Subject: [PATCH] Fix grammar in README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 32f427c..cf9b798 100644 --- a/README.md +++ b/README.md @@ -169,11 +169,11 @@ var http = require('http'), var proxy = httpProxy.createProxyServer(); // -// Create your server that make an operation that take a while -// and then proxy de request +// Create your server that makes an operation that waits a while +// and then proxies the request // http.createServer(function (req, res) { - // This simulate an operation that take 500ms in execute + // This simulates an operation that takes 500ms to execute setTimeout(function () { proxy.web(req, res, { target: 'http://localhost:9008'