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) {