diff options
author | Bouke van der Bijl <boukevanderbijl@gmail.com> | 2016-07-22 13:08:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-22 13:08:01 -0400 |
commit | bb699ba24db2ebbec0db98d20eef61a4494f12f4 (patch) | |
tree | 7d16b0c424202239ca54bd81b48008a49c330362 | |
parent | Merge pull request #573 from evnix/patch-1 (diff) | |
download | dedo-bb699ba24db2ebbec0db98d20eef61a4494f12f4.tar.gz dedo-bb699ba24db2ebbec0db98d20eef61a4494f12f4.tar.xz |
Fix typo (Tx -> DB)
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |