From 44ba9df460c9d902bde0734fe222792c5f419a5b Mon Sep 17 00:00:00 2001 From: odykyi Date: Tue, 7 Mar 2017 15:56:18 +0200 Subject: [PATCH] fix tabulation on request example README.MD --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 231739114..3eaec064f 100644 --- a/README.md +++ b/README.md @@ -1036,7 +1036,8 @@ the server sent a compressed response. console.log('server encoded the data as: ' + (response.headers['content-encoding'] || 'identity')) console.log('the decoded data is: ' + body) } - ).on('data', function(data) { + ) + .on('data', function(data) { // decompressed data as it is received console.log('decoded chunk: ' + data) })