Skip to content

Commit

Permalink
Merge pull request #429 from tanrax/patch-1
Browse files Browse the repository at this point in the history
Fix character in README
  • Loading branch information
constantinius committed May 22, 2024
2 parents da93668 + 3fbfb60 commit 4af107d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ or a `Blob`/`File`:
```html
<input type="file" id="file">
<script>
const input = document.getElementById('file'):
const input = document.getElementById('file');
input.onchange = async function() {
const tiff = await fromBlob(input.files[0]);
}
Expand Down

0 comments on commit 4af107d

Please sign in to comment.