mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-05 03:11:04 +01:00
Typo fix. #25
This commit is contained in:
parent
d36ff393f6
commit
efea8e667d
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue