Skip to content

Commit 5b25a43

Browse files
committed
fixed variable name in README example
1 parent d616110 commit 5b25a43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docbits/20_import.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Using `Blob#arrayBuffer`:
143143

144144
```js
145145
async function handleFileAsync(e) {
146-
const file = evt.target.files[0];
146+
const file = e.target.files[0];
147147
const data = await file.arrayBuffer();
148148
const workbook = XLSX.read(data);
149149

0 commit comments

Comments
 (0)