Skip to content

Commit

Permalink
Fixes: nodejs#25495
Browse files Browse the repository at this point in the history
Co-Authored-By: mukulkhanna <mukul18khanna@gmail.com>
  • Loading branch information
Trott and mukulkhanna authored Feb 26, 2019
1 parent 83335ea commit 2b7f394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/zlib.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const http = require('http');
const fs = require('fs');
http.createServer((request, response) => {
const raw = fs.createReadStream('index.html');
// To store both, a compressed and an uncompressed version of the resource.
// Store both a compressed and an uncompressed version of the resource.
response.setHeader('Vary: Accept-Encoding');
let acceptEncoding = request.headers['accept-encoding'];
if (!acceptEncoding) {
Expand Down

0 comments on commit 2b7f394

Please sign in to comment.