aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitor De Mario <vitor.demario@mendelics.com.br>2015-02-23 16:35:38 -0300
committerVitor De Mario <vitor.demario@mendelics.com.br>2015-02-23 16:35:38 -0300
commitd6a67f7cce95aaae451abda3f0577a42beb51487 (patch)
tree20349f9815e99f0b91c910d25723bdde9dc0cabe
parentMerge pull request #309 from everdev/operation-go (diff)
downloaddedo-d6a67f7cce95aaae451abda3f0577a42beb51487.tar.gz
dedo-d6a67f7cce95aaae451abda3f0577a42beb51487.tar.xz
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
}