Skip to content

Commit

Permalink
Merge pull request #2589 from odykyi/fix-tabulation
Browse files Browse the repository at this point in the history
fix tabulation on request example README.MD
  • Loading branch information
FredKSchott committed Mar 16, 2017
2 parents 3d5e50d + 44ba9df commit 087de94
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -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)
})
Expand Down

0 comments on commit 087de94

Please sign in to comment.