Skip to content

Commit

Permalink
docbuilder: missing "S" in IF EXISTS
Browse files Browse the repository at this point in the history
  • Loading branch information
Gioee committed Jun 17, 2024
1 parent 8b31df0 commit 3cd54b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ static void create_file (const char *path) {
write_line("BEGIN TRANSACTION;", -1, 1);
}

write_line("DROP TABLE IF EXITS documentation;", -1, 1);
write_line("DROP TABLE IF EXISTS documentation;", -1, 1);
write_line("CREATE VIRTUAL TABLE IF NOT EXISTS documentation USING fts5 (url, content);", -1, 1);
}

Expand Down

0 comments on commit 3cd54b0

Please sign in to comment.