Skip to content

Commit

Permalink
Fix typo in Select documentation (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislas-m committed May 21, 2018
1 parent 4d37e8f commit 83b2ad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ err = db.Select("name").All(&users)
err = db.Select("max(age)").All(&users)
// SELECT max(age) FROM users
err = db.Select("age, name").All(&users)
err = db.Select("age", "name").All(&users)
// SELECT age, name FROM users
```

Expand Down

0 comments on commit 83b2ad3

Please sign in to comment.