Skip to content

Commit 735683c

Browse files
authored
Fix typo in project-structure.md (brianc#3008)
1 parent 46cfb25 commit 735683c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/pages/guides/project-structure.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ That's it. But now everywhere else in my application instead of requiring `pg` d
4444
import * as db from '../db.js'
4545

4646
app.get('/:id', async (req, res, next) => {
47-
const result = await db.query('SELECT * FROM users WHERE id = $1', [req.params.id]
47+
const result = await db.query('SELECT * FROM users WHERE id = $1', [req.params.id])
4848
res.send(result.rows[0])
4949
})
5050

0 commit comments

Comments
 (0)