Merge pull request #577 from bouk/patch-1

Fix typo (Tx -> DB)
This commit is contained in:
Ben Johnson 2016-08-31 16:25:56 -06:00 committed by GitHub
commit ec58b76ba0

View File

@ -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