aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBouke van der Bijl <boukevanderbijl@gmail.com>2016-07-22 13:08:01 -0400
committerGitHub <noreply@github.com>2016-07-22 13:08:01 -0400
commitbb699ba24db2ebbec0db98d20eef61a4494f12f4 (patch)
tree7d16b0c424202239ca54bd81b48008a49c330362
parentMerge pull request #573 from evnix/patch-1 (diff)
downloaddedo-bb699ba24db2ebbec0db98d20eef61a4494f12f4.tar.gz
dedo-bb699ba24db2ebbec0db98d20eef61a4494f12f4.tar.xz
Fix typo (Tx -> DB)
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index e8a64f5..d04a453 100644
--- a/README.md
+++ b/README.md
@@ -209,7 +209,7 @@ and then safely close your transaction if an error is returned. This is the
recommended way to use Bolt transactions.
However, sometimes you may want to manually start and end your transactions.
-You can use the `Tx.Begin()` function directly but **please** be sure to close
+You can use the `DB.Begin()` function directly but **please** be sure to close
the transaction.
```go