From 2b7f3942cd7bc418ff26f3a7cad1b83c910ea4cc Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 26 Feb 2019 21:17:31 +0530 Subject: [PATCH] Fixes: https://github.com/nodejs/node/issues/25495 Co-Authored-By: mukulkhanna --- doc/api/zlib.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/zlib.md b/doc/api/zlib.md index e3d1669bb59de7..6efc2a709c339d 100644 --- a/doc/api/zlib.md +++ b/doc/api/zlib.md @@ -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) {