diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2015-02-23 12:57:44 -0700 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2015-02-23 12:57:44 -0700 |
commit | a7d19d8cd50cb700babad58d0643a4bb6ac8f36c (patch) | |
tree | 20349f9815e99f0b91c910d25723bdde9dc0cabe | |
parent | Merge pull request #309 from everdev/operation-go (diff) | |
parent | Fixed missing parenthesis on the readme (diff) | |
download | dedo-a7d19d8cd50cb700babad58d0643a4bb6ac8f36c.tar.gz dedo-a7d19d8cd50cb700babad58d0643a4bb6ac8f36c.tar.xz |
Merge pull request #314 from vdemario/fix_typo_readme
Fixed missing parenthesis on the readme
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |