Skip to content

Commit e445013

Browse files
committed
Merge pull request #502 from jamesmanning/patch-1
attempting to fix links to 2 source locations in README.md
2 parents 86750c7 + bbe2b27 commit e445013

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ proxies and load balancers.
2121
### Core Concept
2222

2323
A new proxy is created by calling `createProxyServer` and passing
24-
an `options` object as argument ([valid properties are available here](tree/master/lib/http-proxy.js#L26-L39))
24+
an `options` object as argument ([valid properties are available here](lib/http-proxy.js#L26-L39))
2525

2626
```javascript
2727
var httpProxy = require('http-proxy');
@@ -44,7 +44,7 @@ require('http').createServer(function(req, res) {
4444
});
4545
```
4646

47-
When a request is proxied it follows two different pipelines ([available here](tree/master/lib/http-proxy/passes))
47+
When a request is proxied it follows two different pipelines ([available here](lib/http-proxy/passes))
4848
which apply transformations to both the `req` and `res` object.
4949
The first pipeline (ingoing) is responsible for the creation and manipulation of the stream that connects your client to the target.
5050
The second pipeline (outgoing) is responsible for the creation and manipulation of the stream that, from your target, returns data

0 commit comments

Comments
 (0)