From 3c38a8d0d30fdd5549939c6fd4a0c536ed004442 Mon Sep 17 00:00:00 2001 From: Michael Ira Krufky Date: Fri, 9 Sep 2016 13:24:08 -0400 Subject: [PATCH] README.md: fix typo: 'ingoing' should be 'incoming' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9aded714f..3c0a26fab 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ proxy.web(req, res, { target: 'http://mytarget.com:8080' }, function(e) { ... }) When a request is proxied it follows two different pipelines ([available here](lib/http-proxy/passes)) 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 first pipeline (incoming) 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 data to the client.