Skip to content

Commit

Permalink
fix tabulation on request example README.MD
Browse files Browse the repository at this point in the history
  • Loading branch information
odykyi authored and odykyi committed Mar 7, 2017
1 parent fa48e67 commit 44ba9df
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 44ba9df

Please sign in to comment.