aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2016-08-31 16:25:56 -0600
committerGitHub <noreply@github.com>2016-08-31 16:25:56 -0600
commitec58b76ba0e6b190fed15db6911036a5760d2145 (patch)
tree7df43a70884a859026d87dd30d7563abfadb9146 /README.md
parentMerge pull request #584 from benbjohnson/go17 (diff)
parentFix typo (Tx -> DB) (diff)
downloaddedo-ec58b76ba0e6b190fed15db6911036a5760d2145.tar.gz
dedo-ec58b76ba0e6b190fed15db6911036a5760d2145.tar.xz
Merge pull request #577 from bouk/patch-1
Fix typo (Tx -> DB)
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 8523e33..75d5b57 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