aboutsummaryrefslogtreecommitdiff
path: root/bucket_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'bucket_test.go')
-rw-r--r--bucket_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bucket_test.go b/bucket_test.go
index 16172a5..9ed63ee 100644
--- a/bucket_test.go
+++ b/bucket_test.go
@@ -939,7 +939,7 @@ func ExampleBucket_Put() {
})
// Read value back in a different read-only transaction.
- db.Update(func(tx *Tx) error {
+ db.View(func(tx *Tx) error {
value := tx.Bucket([]byte("widgets")).Get([]byte("foo"))
fmt.Printf("The value of 'foo' is: %s\n", value)
return nil