From ba3d5e0217d8ec9ace2cad93a2caea90eae04eba Mon Sep 17 00:00:00 2001 From: fzn0x Date: Fri, 3 May 2024 10:40:14 +0700 Subject: [PATCH] docs(sqlite): fix a small typo in `.run()` section (#10784) --- docs/api/sqlite.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/sqlite.md b/docs/api/sqlite.md index 04ab1bbf4d..6bc278aa0c 100644 --- a/docs/api/sqlite.md +++ b/docs/api/sqlite.md @@ -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;`);