Skip to content

Commit 75a9a2d

Browse files
committed
Merge pull request #749 from kblanks/patch-1
Fix grammar in README.md
2 parents 56a7b77 + aeb42a3 commit 75a9a2d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -169,11 +169,11 @@ var http = require('http'),
169169
var proxy = httpProxy.createProxyServer();
170170

171171
//
172-
// Create your server that make an operation that take a while
173-
// and then proxy de request
172+
// Create your server that makes an operation that waits a while
173+
// and then proxies the request
174174
//
175175
http.createServer(function (req, res) {
176-
// This simulate an operation that take 500ms in execute
176+
// This simulates an operation that takes 500ms to execute
177177
setTimeout(function () {
178178
proxy.web(req, res, {
179179
target: 'http://localhost:9008'

0 commit comments

Comments
 (0)