From bb699ba24db2ebbec0db98d20eef61a4494f12f4 Mon Sep 17 00:00:00 2001 From: Bouke van der Bijl Date: Fri, 22 Jul 2016 13:08:01 -0400 Subject: [PATCH] Fix typo (Tx -> DB) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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