aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2015-02-23 12:57:44 -0700
committerBen Johnson <benbjohnson@yahoo.com>2015-02-23 12:57:44 -0700
commita7d19d8cd50cb700babad58d0643a4bb6ac8f36c (patch)
tree20349f9815e99f0b91c910d25723bdde9dc0cabe
parentMerge pull request #309 from everdev/operation-go (diff)
parentFixed missing parenthesis on the readme (diff)
downloaddedo-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.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index cb65702..02a85b0 100644
--- a/README.md
+++ b/README.md
@@ -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
}