Skip to content

Commit

Permalink
Fix grammar in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kailan committed Dec 3, 2014
1 parent 56a7b77 commit aeb42a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -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'
Expand Down

0 comments on commit aeb42a3

Please sign in to comment.