Merge pull request #314 from vdemario/fix_typo_readme

Fixed missing parenthesis on the readme
pull/34/head
Ben Johnson 2015-02-23 12:57:44 -07:00
commit a7d19d8cd5
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ if err != nil {
defer tx.Rollback()
// Use the transaction...
_, err := tx.CreateBucket([]byte("MyBucket")
_, err := tx.CreateBucket([]byte("MyBucket"))
if err != nil {
return err
}