Fix `ExampleBucket_Put` to use `db.View` instead of `db.Update`.

master
yosssi 2014-05-31 11:22:50 +09:00
parent 2ee5806031
commit a9189ddefb
1 changed files with 1 additions and 1 deletions

View File

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