We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e7a213 commit 1223603Copy full SHA for 1223603
README.md
@@ -145,7 +145,7 @@ See : https://sql-js.github.io/sql.js/examples/GUI/gui.js
145
const sqlPromise = initSqlJs({
146
locateFile: file => `https://path/to/your/dist/folder/dist/${file}`
147
});
148
-const dataPromise = fetch("/path/to/databse.sqlite").then(res => res.arrayBuffer());
+const dataPromise = fetch("/path/to/database.sqlite").then(res => res.arrayBuffer());
149
const [SQL, buf] = await Promise.all([sqlPromise, dataPromise])
150
const db = new SQL.Database(new Uint8Array(buf));
151
```
0 commit comments