Skip to content

Commit be04ec8

Browse files
authored
Merge pull request #1590 from solominka/issue-1589
[1589] fix readme
2 parents 76492e8 + d2ecb0b commit be04ec8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ err := db.Query().Do( // Do retry operation on errors with best effort
6262
return err
6363
}
6464
type myStruct struct {
65-
id uint64 `sql:"id"`
66-
str string `sql:"myStr"`
65+
Id int32 `sql:"id"`
66+
Str string `sql:"myStr"`
6767
}
6868
var s myStruct
6969
if err = row.ScanStruct(&s); err != nil {

0 commit comments

Comments
 (0)