Skip to content

Commit

Permalink
Merge pull request #272 from mrtztg/patch-1
Browse files Browse the repository at this point in the history
Fix missing parentheses in  parameters.md
  • Loading branch information
stephenafamo authored Sep 11, 2024
2 parents 2944bfb + 717c404 commit 75edad8
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 75edad8

Please sign in to comment.