Skip to content

Commit

Permalink
Replace double quotes in DB execute example SQLite statement with sin…
Browse files Browse the repository at this point in the history
…gle quote (#244)
  • Loading branch information
Pizt0lmnk authored Aug 21, 2023
1 parent 243b218 commit 86d43a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ export class DB {
* age REAL,
* city TEXT
* );
* INSERT INTO people (name, age, city) VALUES ("Peter Parker", 21, "nyc");
* INSERT INTO people (name, age, city) VALUES ('Peter Parker', 21, 'nyc');
* `);
* ```
*/
Expand Down

0 comments on commit 86d43a3

Please sign in to comment.