From 3ccc84edf325df4fbfd5ae6400fe3ec5baa896b5 Mon Sep 17 00:00:00 2001 From: Guilherme Avila Date: Sat, 27 Jun 2020 12:28:33 -0300 Subject: [PATCH 1/2] README.en.md: minor typo fix Updating minor inconsistency in the README file. --- README.en.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.en.md b/README.en.md index a502efe..42a8d95 100644 --- a/README.en.md +++ b/README.en.md @@ -146,7 +146,7 @@ filename, comment, extraField are must use Uint8Array if enabled Typed Array. ### Decompression -#### Raw Deflate +#### Raw Inflate ```js // compressed = Array. or Uint8Array @@ -154,7 +154,7 @@ var inflate = new Zlib.RawInflate(compressed); var plain = inflate.decompress(); ``` -#### Raw Deflate Option +#### Raw Inflate Option See ZLIB Option. From 2b2d554b0267ef133a87c158a9b25f253731f0b3 Mon Sep 17 00:00:00 2001 From: Guilherme Avila Date: Sat, 27 Jun 2020 12:31:00 -0300 Subject: [PATCH 2/2] README.md: minor typo fix. Updating minor inconsistency with README file. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4632af8..c7c7341 100644 --- a/README.md +++ b/README.md @@ -155,7 +155,7 @@ filename, comment, extraField は Typed Array が使用可能な場合は必ず 圧縮されたデータの伸張は、基本的に各コンストラクタに圧縮されたデータを渡し、 それの decompress メソッドを呼ぶ事で伸張処理を開始する事が出来ます。 -#### Raw Deflate +#### Raw Inflate ```js // compressed = Array. or Uint8Array @@ -163,7 +163,7 @@ var inflate = new Zlib.RawInflate(compressed); var plain = inflate.decompress(); ``` -#### Raw Deflate Option +#### Raw Inflate Option ZLIB Option を参照してください。