docs(sqlite): fix a small typo in .run() section (#10784)

This commit is contained in:
fzn0x
2024-05-03 10:40:14 +07:00
committed by GitHub
parent ec6110e7e3
commit ba3d5e0217

View File

@@ -200,7 +200,7 @@ Internally, this calls [`sqlite3_reset`](https://www.sqlite.org/capi3ref.html#sq
### `.run()`
Use `.run()` to run a query and get back `undefined`. This is useful for queries schema-modifying queries (e.g. `CREATE TABLE`) or bulk write operations.
Use `.run()` to run a query and get back `undefined`. This is useful for schema-modifying queries (e.g. `CREATE TABLE`) or bulk write operations.
```ts
const query = db.query(`create table foo;`);