We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bcb2e1 commit 4524c11Copy full SHA for 4524c11
doc/api/zlib.md
@@ -115,7 +115,7 @@ const fs = require('fs');
115
http.createServer((request, response) => {
116
const raw = fs.createReadStream('index.html');
117
// Store both a compressed and an uncompressed version of the resource.
118
- response.setHeader('Vary: Accept-Encoding');
+ response.setHeader('Vary', 'Accept-Encoding');
119
let acceptEncoding = request.headers['accept-encoding'];
120
if (!acceptEncoding) {
121
acceptEncoding = '';
0 commit comments