Merge pull request #14 from sateffen/master

[fix] 2 spelling mistakes
This commit is contained in:
yawnt 2013-09-15 04:46:32 -07:00
commit c9945dd370

View File

@ -32,9 +32,9 @@ require('http').createServer(function(req, res) {
```
When a request is proxied it follows two different pipelines ([available here](https://github.com/yawnt/caronte/tree/master/lib/caronte/passes))
which apply trasformations to both the `req` and `res` object.
which apply transformations to both the `req` and `res` object.
The first pipeline (ingoing) is responsible for the creation and manipulation of the stream that connects your client to the target.
The second pipeline (outgoing) is responsible for the creation and manipulation of the stream that, from your target, returns datas
The second pipeline (outgoing) is responsible for the creation and manipulation of the stream that, from your target, returns data
to the client.
You can easily add a `pass` (stages) into both the pipelines (XXX: ADD API).