Skip to content

Commit

Permalink
chore: typo fix on mysql example (#5270)
Browse files Browse the repository at this point in the history
  • Loading branch information
TanLingtao authored Nov 9, 2023
1 parent a71b885 commit ad6c06a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/docs/tutorials/mysql.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ const first = 'James';
const last = 'Bond';
await this.app.mysql.insert(table, {
id: 123,
fullname: new Literal(`CONCAT("${first}", "${last}"`),
fullname: new Literal(`CONCAT("${first}", "${last}")`),
});

=> INSERT INTO `$table`(`id`, `fullname`) VALUES(123, CONCAT("James", "Bond"))
Expand Down

0 comments on commit ad6c06a

Please sign in to comment.