From efea8e667d46b470b937193ecf9d4608dbef6a70 Mon Sep 17 00:00:00 2001 From: Vitaly Puzrin Date: Sat, 17 May 2014 20:41:40 +0400 Subject: [PATCH] Typo fix. #25 --- lib/inflate.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/inflate.js b/lib/inflate.js index 70e28ec..92a2b60 100644 --- a/lib/inflate.js +++ b/lib/inflate.js @@ -284,7 +284,7 @@ Inflate.prototype.onEnd = function(status) { /** * inflate(data[, options]) -> Uint8Array|Array|String - * - data (Uint8Array|Array|String): input data to compress. + * - data (Uint8Array|Array|String): input data to decompress. * - options (Object): zlib inflate options. * * Decompress `data` with inflate/ungzip and `options`. Autodetect @@ -335,7 +335,7 @@ function inflate(input, options) { /** * inflateRaw(data[, options]) -> Uint8Array|Array|String - * - data (Uint8Array|Array|String): input data to compress. + * - data (Uint8Array|Array|String): input data to decompress. * - options (Object): zlib inflate options. * * The same as [[inflate]], but creates raw data, without wrapper @@ -350,7 +350,7 @@ function inflateRaw(input, options) { /** * ungzip(data[, options]) -> Uint8Array|Array|String - * - data (Uint8Array|Array|String): input data to compress. + * - data (Uint8Array|Array|String): input data to decompress. * - options (Object): zlib inflate options. * * Just shortcut to [[inflate]], because it autodetects format