Skip to content

Commit

Permalink
doc: add links for zlib convenience methods
Browse files Browse the repository at this point in the history
Add links to the engine classes for the zlib single-call
convenience methods.

PR-URL: #10829
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Daniel Bevenius <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
addaleax committed Jan 18, 2017
1 parent 6d31bdb commit 55c42bc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions doc/api/zlib.md
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ added: v0.6.0
added: v0.11.12
-->

Compress a Buffer or string with Deflate.
Compress a [Buffer][] or string with [Deflate][].

### zlib.deflateRaw(buf[, options], callback)
<!-- YAML
Expand All @@ -474,7 +474,7 @@ added: v0.6.0
added: v0.11.12
-->

Compress a Buffer or string with DeflateRaw.
Compress a [Buffer][] or string with [DeflateRaw][].

### zlib.gunzip(buf[, options], callback)
<!-- YAML
Expand All @@ -485,7 +485,7 @@ added: v0.6.0
added: v0.11.12
-->

Decompress a Buffer or string with Gunzip.
Decompress a [Buffer][] or string with [Gunzip][].

### zlib.gzip(buf[, options], callback)
<!-- YAML
Expand All @@ -496,7 +496,7 @@ added: v0.6.0
added: v0.11.12
-->

Compress a Buffer or string with Gzip.
Compress a [Buffer][] or string with [Gzip][].

### zlib.inflate(buf[, options], callback)
<!-- YAML
Expand All @@ -507,7 +507,7 @@ added: v0.6.0
added: v0.11.12
-->

Decompress a Buffer or string with Inflate.
Decompress a [Buffer][] or string with [Inflate][].

### zlib.inflateRaw(buf[, options], callback)
<!-- YAML
Expand All @@ -518,7 +518,7 @@ added: v0.6.0
added: v0.11.12
-->

Decompress a Buffer or string with InflateRaw.
Decompress a [Buffer][] or string with [InflateRaw][].

### zlib.unzip(buf[, options], callback)
<!-- YAML
Expand All @@ -529,7 +529,7 @@ added: v0.6.0
added: v0.11.12
-->

Decompress a Buffer or string with Unzip.
Decompress a [Buffer][] or string with [Unzip][].

[`Accept-Encoding`]: https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3
[`Content-Encoding`]: https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11
Expand Down

0 comments on commit 55c42bc

Please sign in to comment.