From 2fcb4b2d24ed77af7c2565ddef042329e725cf0a Mon Sep 17 00:00:00 2001 From: emersion Date: Fri, 17 Jun 2016 19:29:27 +0200 Subject: [PATCH] Fixes build error in README code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2fa3e2a..6569294 100644 --- a/README.md +++ b/README.md @@ -313,7 +313,7 @@ func (s *Store) CreateUser(u *User) error { // Generate ID for the user. // This returns an error only if the Tx is closed or not writeable. // That can't happen in an Update() call so I ignore the error check. - id, _ = b.NextSequence() + id, _ := b.NextSequence() u.ID = int(id) // Marshal user data into bytes.