Skip to content

Commit 60ad323

Browse files
committed
doc: lint
1 parent 41717ac commit 60ad323

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/api/sqlite.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ db.setAuthorizer((actionCode) => {
360360
});
361361

362362
// This will work
363-
db.prepare('SELECT 1').get()
363+
db.prepare('SELECT 1').get();
364364

365365
// This will throw an error due to authorization denial
366366
try {
@@ -383,7 +383,7 @@ db.setAuthorizer((actionCode) => {
383383
});
384384

385385
// This will work
386-
db.prepare('SELECT 1').get()
386+
db.prepare('SELECT 1').get();
387387

388388
// This will throw an error due to authorization denial
389389
try {

0 commit comments

Comments
 (0)