Skip to content

Commit

Permalink
Fix missing parentheses in parameters.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtztg authored Sep 10, 2024
1 parent 2944bfb commit 717c404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/query-builder/parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ To prevent SQL injection, it is necessary to use parameters in our queries. With
psql.Select(
sm.From("users"),
sm.Where(psql.Quote("id").EQ(psql.Arg(100))),
sm.Where(psql.Quote("name".EQ(psql.Arg("Stephen"))),
sm.Where(psql.Quote("name").EQ(psql.Arg("Stephen"))),
)
```

0 comments on commit 717c404

Please sign in to comment.