We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46cfb25 commit 735683cCopy full SHA for 735683c
docs/pages/guides/project-structure.md
@@ -44,7 +44,7 @@ That's it. But now everywhere else in my application instead of requiring `pg` d
44
import * as db from '../db.js'
45
46
app.get('/:id', async (req, res, next) => {
47
- const result = await db.query('SELECT * FROM users WHERE id = $1', [req.params.id]
+ const result = await db.query('SELECT * FROM users WHERE id = $1', [req.params.id])
48
res.send(result.rows[0])
49
})
50
0 commit comments