Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fixes: #25495
Co-Authored-By: mukulkhanna <mukul18khanna@gmail.com>
  • Loading branch information
Trott and mukulkhanna authored Feb 26, 2019
commit 2b7f3942cd7bc418ff26f3a7cad1b83c910ea4cc
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