Skip to content

Commit

Permalink
fix typo in README.md
Browse files Browse the repository at this point in the history
Missing open double quote on example
  • Loading branch information
peczenyj committed May 25, 2024
1 parent b60424c commit b399634
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func main() {

interest := Interest{}

success, err:= manager.ReadSingle(&interest, SELECT id, name, expiry, category FROM interests WHERE id = ?", []interface{}{id},nil)
success, err:= manager.ReadSingle(&interest, "SELECT id, name, expiry, category FROM interests WHERE id = ?", []interface{}{id},nil)
if err != nil {
panic(err.Error())
}
Expand Down Expand Up @@ -163,4 +163,4 @@ all compatible with Apache License, Version 2. Please see individual files for d
**Library Author:** Adrian Witas
**Contributors:** Sudhakaran Dharmaraj
**Contributors:** Sudhakaran Dharmaraj

0 comments on commit b399634

Please sign in to comment.