fix wrong type in doc

This commit is contained in:
Lunny Xiao 2017-03-06 19:44:30 +08:00
parent 8045ca23c8
commit bc97322264
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A
1 changed files with 1 additions and 1 deletions

2
doc.go
View File

@ -58,7 +58,7 @@ There are 7 major ORM methods and many helpful methods to use to operate databas
3. Query multiple records from database
sliceOfStructs := new(Struct)
var sliceOfStructs []Struct
err := engine.Find(sliceOfStructs)
// SELECT * FROM user