Skip to content

Commit 118f20f

Browse files
authored
Apply suggestions from code review
1 parent 2cf189e commit 118f20f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/api/sqlite.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ helps to avoid the overhead of repeatedly parsing and preparing the same SQL
458458
statements.
459459

460460
Tagged statements bind the placeholder values from the template literal as
461-
parameters to the underlying prepared statement. That is to say,
461+
parameters to the underlying prepared statement. For example:
462462

463463
```js
464464
tagStore.get`SELECT ${value}`;
@@ -470,8 +470,8 @@ is equivalent to
470470
db.prepare('SELECT ?').get(value);
471471
```
472472

473-
except that the tag store will cache the underlying prepared statement for
474-
future use.
473+
However, in the first example, the tag store will cache the underlying prepared
474+
statement for future use.
475475

476476
The tag store will match a statement from the cache if the query strings
477477
(including the positions of any bound placeholders) are identical.

0 commit comments

Comments
 (0)