Skip to content

Commit 1223603

Browse files
authored
Typo in README (sql-js#456)
Just a small error.
1 parent 0e7a213 commit 1223603

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ See : https://sql-js.github.io/sql.js/examples/GUI/gui.js
145145
const sqlPromise = initSqlJs({
146146
locateFile: file => `https://path/to/your/dist/folder/dist/${file}`
147147
});
148-
const dataPromise = fetch("/path/to/databse.sqlite").then(res => res.arrayBuffer());
148+
const dataPromise = fetch("/path/to/database.sqlite").then(res => res.arrayBuffer());
149149
const [SQL, buf] = await Promise.all([sqlPromise, dataPromise])
150150
const db = new SQL.Database(new Uint8Array(buf));
151151
```

0 commit comments

Comments
 (0)