From 356c5764489940aef8f30cf25c6718626ac9a245 Mon Sep 17 00:00:00 2001 From: Vitaly Puzrin Date: Mon, 21 Dec 2020 12:22:30 +0300 Subject: [PATCH] Typo fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 963c912..507b0c9 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ try { const deflator = new pako.Deflate(); deflator.push(chunk1, false); -deflator.push(chunk2), false; +deflator.push(chunk2); // second param is false by default. ... deflator.push(chunk_last, true); // `true` says this chunk is last