Remove typo from DB access example in README

This commit is contained in:
Trevor Rosen 2013-12-27 16:09:43 -06:00
parent cc4fcbe557
commit 09334a8bb7
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ func init() {
// user.go // user.go
package user package user
import _ "db" import "db"
... ...
DB.Save(&User{Name: "xxx"}) DB.Save(&User{Name: "xxx"})
... ...