@@ -110,7 +110,7 @@ http.createServer((request, response) => {
110110 }
111111
112112 // Note: This is not a conformant accept-encoding parser.
113- // See http ://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3
113+ // See https ://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3
114114 if (/ \b deflate\b / .test (acceptEncoding)) {
115115 response .writeHead (200 , { ' Content-Encoding' : ' deflate' });
116116 raw .pipe (zlib .createDeflate ()).pipe (response);
@@ -235,7 +235,7 @@ All of the constants defined in `zlib.h` are also defined on
235235` require('zlib').constants ` . In the normal course of operations, it will not be
236236necessary to use these constants. They are documented so that their presence is
237237not surprising. This section is taken almost directly from the
238- [ zlib documentation] [ ] . See < http ://zlib.net/manual.html#Constants> for more
238+ [ zlib documentation] [ ] . See < https ://zlib.net/manual.html#Constants> for more
239239details.
240240
241241* Note* : Previously, the constants were available directly from
@@ -313,7 +313,7 @@ ignored by the decompression classes.
313313* ` info ` {boolean} (If ` true ` , returns an object with ` buffer ` and ` engine ` )
314314
315315See the description of ` deflateInit2 ` and ` inflateInit2 ` at
316- < http ://zlib.net/manual.html#Advanced> for more information on these.
316+ < https ://zlib.net/manual.html#Advanced> for more information on these.
317317
318318## Class: zlib.Deflate
319319<!-- YAML
@@ -723,4 +723,4 @@ Decompress a chunk of data with [Unzip][].
723723[ Unzip ] : #zlib_class_zlib_unzip
724724[ `UV_THREADPOOL_SIZE` ] : cli.html#cli_uv_threadpool_size_size
725725[ options ] : #zlib_class_options
726- [ zlib documentation ] : http ://zlib.net/manual.html#Constants
726+ [ zlib documentation ] : https ://zlib.net/manual.html#Constants
0 commit comments