We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 56a7b77 + aeb42a3 commit 75a9a2dCopy full SHA for 75a9a2d
README.md
@@ -169,11 +169,11 @@ var http = require('http'),
169
var proxy = httpProxy.createProxyServer();
170
171
//
172
-// Create your server that make an operation that take a while
173
-// and then proxy de request
+// Create your server that makes an operation that waits a while
+// and then proxies the request
174
175
http.createServer(function (req, res) {
176
- // This simulate an operation that take 500ms in execute
+ // This simulates an operation that takes 500ms to execute
177
setTimeout(function () {
178
proxy.web(req, res, {
179
target: 'http://localhost:9008'
0 commit comments