diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2016-08-31 16:25:56 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-31 16:25:56 -0600 |
commit | ec58b76ba0e6b190fed15db6911036a5760d2145 (patch) | |
tree | 7df43a70884a859026d87dd30d7563abfadb9146 /README.md | |
parent | Merge pull request #584 from benbjohnson/go17 (diff) | |
parent | Fix typo (Tx -> DB) (diff) | |
download | dedo-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.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 |