We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56a7b77 commit aeb42a3Copy full SHA for aeb42a3
1 file changed
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