Skip to content

Commit

Permalink
fix typos in README
Browse files Browse the repository at this point in the history
  • Loading branch information
KurtThiemann committed Mar 9, 2023
1 parent 62337db commit dd5efc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ For deflate/inflate support, this library depends on the [Compression Streams AP
Armarius can be installed using npm:

```shell
npm install amarius
npm install armarius
```

It can then be loaded as an ES Module:
Expand All @@ -36,7 +36,7 @@ objects. Other readers can be implemented by extending the [DataReader](src/Read

```javascript
let fileInput = document.getElementById('file-input');
let reader = armarius.BrowserFileReader(fileInput.files[0]);
let reader = new armarius.BrowserFileReader(fileInput.files[0]);
```

A [ReadArchive](src/Archive/ReadArchive.js) can then be created from the reader.
Expand Down

0 comments on commit dd5efc6

Please sign in to comment.