From d3f68f0270e199b612e66615659b21d5c68bf6e5 Mon Sep 17 00:00:00 2001 From: Bobby Galli Date: Fri, 19 May 2023 13:26:13 -0400 Subject: [PATCH] chore: fix typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0436cda..d0d4599 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ fs.createReadStream('path/to/archive.zip') .pipe(unzipper.Extract({ path: 'output/path' })); ``` -Extract emits the 'close' event once the zip's contents have been fully extracted to disk. `Extract` uses [fstream.Writer](https://www.npmjs.com/package/fstream) and therefore needs need an absolute path to the destination directory. This directory will be automatically created if it doesn't already exits. +Extract emits the 'close' event once the zip's contents have been fully extracted to disk. `Extract` uses [fstream.Writer](https://www.npmjs.com/package/fstream) and therefore needs need an absolute path to the destination directory. This directory will be automatically created if it doesn't already exist. ### Parse zip file contents