Skip to content

Commit aeb42a3

Browse files
committed
Fix grammar in README.md
1 parent 56a7b77 commit aeb42a3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
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)